make-selection 1.0.9__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: make_selection
3
- Version: 1.0.9
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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "make_selection"
3
- version = "1.0.9"
3
+ version = "1.0.10"
4
4
  authors = [
5
5
  { name="Steven Frazee", email="stevefrazee123@gmail.com" },
6
6
  ]
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: make_selection
3
- Version: 1.0.9
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
@@ -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