pyconvertu 1.0.4__tar.gz → 1.0.5__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.4
3
+ Version: 1.0.5
4
4
  Summary: From/to Classification Converter
5
5
  Author-email: The Economist <29724411+econcz@users.noreply.github.com>
6
6
  License-Expression: MIT
@@ -35,8 +35,8 @@ print(convert(to="iso3", text=["Czech Republic", "Slovakia"]))
35
35
  ```
36
36
  bash:
37
37
  ```bash
38
- uconv -t iso3 'Czech Republic' 'Slovakia'
39
- echo -e "Czech Republic\nSlovakia" | uconv -t iso3
38
+ cconv -t iso3 'Czech Republic' 'Slovakia'
39
+ echo -e "Czech Republic\nSlovakia" | cconv -t iso3
40
40
  ```
41
41
 
42
42
  ## User Reference
@@ -17,8 +17,8 @@ print(convert(to="iso3", text=["Czech Republic", "Slovakia"]))
17
17
  ```
18
18
  bash:
19
19
  ```bash
20
- uconv -t iso3 'Czech Republic' 'Slovakia'
21
- echo -e "Czech Republic\nSlovakia" | uconv -t iso3
20
+ cconv -t iso3 'Czech Republic' 'Slovakia'
21
+ echo -e "Czech Republic\nSlovakia" | cconv -t iso3
22
22
  ```
23
23
 
24
24
  ## User Reference
@@ -1,4 +1,4 @@
1
- __version__ = "1.0.4"
1
+ __version__ = "1.0.5"
2
2
 
3
3
  from .convertu import convert
4
4
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyconvertu
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: From/to Classification Converter
5
5
  Author-email: The Economist <29724411+econcz@users.noreply.github.com>
6
6
  License-Expression: MIT
@@ -35,8 +35,8 @@ print(convert(to="iso3", text=["Czech Republic", "Slovakia"]))
35
35
  ```
36
36
  bash:
37
37
  ```bash
38
- uconv -t iso3 'Czech Republic' 'Slovakia'
39
- echo -e "Czech Republic\nSlovakia" | uconv -t iso3
38
+ cconv -t iso3 'Czech Republic' 'Slovakia'
39
+ echo -e "Czech Republic\nSlovakia" | cconv -t iso3
40
40
  ```
41
41
 
42
42
  ## User Reference
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cconv = convertu.__main__:main
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyconvertu"
3
- version = "1.0.4"
3
+ version = "1.0.5"
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 = "convertu.__main__:main"
32
+ cconv = "convertu.__main__:main"
33
33
 
34
34
  [project.urls]
35
35
  Homepage = "https://github.com/econcz/pyconvertu"
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- uconv = convertu.__main__:main
File without changes
File without changes