make-selection 1.0.8__tar.gz → 1.0.10__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: make_selection
3
- Version: 1.0.8
3
+ Version: 1.0.10
4
4
  Summary: Package for interactive command line menu
5
5
  Author-email: Steven Frazee <stevefrazee123@gmail.com>
6
6
  Classifier: License :: OSI Approved :: MIT License
7
7
  Classifier: Development Status :: 4 - Beta
8
8
  Classifier: Programming Language :: Python :: 3.14
9
9
  Classifier: Operating System :: Microsoft :: Windows
10
- Requires-Python: >=3.14
10
+ Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
13
  Dynamic: license-file
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "make_selection"
3
- version = "1.0.8"
3
+ version = "1.0.10"
4
4
  authors = [
5
5
  { name="Steven Frazee", email="stevefrazee123@gmail.com" },
6
6
  ]
7
7
  description = "Package for interactive command line menu"
8
8
  readme = "README.md"
9
- requires-python = ">=3.14"
9
+ requires-python = ">=3.9"
10
10
  classifiers = [
11
11
  "License :: OSI Approved :: MIT License",
12
12
  "Development Status :: 4 - Beta",
@@ -8,7 +8,7 @@ Ansi escape codes are used as described here: https://gist.github.com/fnky/45871
8
8
  # TODO: multi_select: TAB switches to delete mode.
9
9
  import sys
10
10
  if sys.platform == "win32":
11
- from mappings.windows import getChar
11
+ from windows import getChar
12
12
  multi_select_modifier_string = "Ctl"
13
13
  elif sys.platform == "darwin":
14
14
  from mappings.mac import getChar
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: make_selection
3
- Version: 1.0.8
3
+ Version: 1.0.10
4
4
  Summary: Package for interactive command line menu
5
5
  Author-email: Steven Frazee <stevefrazee123@gmail.com>
6
6
  Classifier: License :: OSI Approved :: MIT License
7
7
  Classifier: Development Status :: 4 - Beta
8
8
  Classifier: Programming Language :: Python :: 3.14
9
9
  Classifier: Operating System :: Microsoft :: Windows
10
- Requires-Python: >=3.14
10
+ Requires-Python: >=3.9
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
13
  Dynamic: license-file
@@ -3,11 +3,11 @@ README.md
3
3
  pyproject.toml
4
4
  src/make_selection/__init__.py
5
5
  src/make_selection/key_codes.py
6
+ src/make_selection/mac.py
6
7
  src/make_selection/make_selection.py
8
+ src/make_selection/windows.py
7
9
  src/make_selection.egg-info/PKG-INFO
8
10
  src/make_selection.egg-info/SOURCES.txt
9
11
  src/make_selection.egg-info/dependency_links.txt
10
12
  src/make_selection.egg-info/top_level.txt
11
- src/make_selection/mappings/mac.py
12
- src/make_selection/mappings/windows.py
13
13
  test/test_windows.py
File without changes