pyconvertu 1.0.0__tar.gz → 1.0.2__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: pyconvertu
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: From/to Classification Converter
5
5
  Author-email: The Economist <29724411+econcz@users.noreply.github.com>
6
6
  License-Expression: MIT
@@ -0,0 +1,8 @@
1
+ __version__ = "1.0.2"
2
+
3
+ from .convertu import convert
4
+
5
+ __all__ = [
6
+ "convert",
7
+ "__version__"
8
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyconvertu
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: From/to Classification Converter
5
5
  Author-email: The Economist <29724411+econcz@users.noreply.github.com>
6
6
  License-Expression: MIT
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ uconv = convertu.__main__:main
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyconvertu"
3
- version = "1.0.0"
3
+ version = "1.0.2"
4
4
  description = "From/to Classification Converter"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -29,7 +29,7 @@ classifiers = [
29
29
  dependencies = []
30
30
 
31
31
  [project.scripts]
32
- uconv = "pyconvertu.__main__:main"
32
+ uconv = "convertu.__main__:main"
33
33
 
34
34
  [project.urls]
35
35
  Homepage = "https://github.com/econcz/pyconvertu"
@@ -1,8 +0,0 @@
1
- __version__ = "1.0.0"
2
-
3
- from .datau import autorun
4
-
5
- __all__ = [
6
- "convert",
7
- "__version__"
8
- ]
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- uconv = pyconvertu.__main__:main
File without changes
File without changes