cli-ih 0.5.1__tar.gz → 0.5.1.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,7 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cli_ih
3
- Version: 0.5.1
3
+ Version: 0.5.1.2
4
4
  Summary: A background command handler for python's command line interface.
5
5
  Author-email: Hotment <michatchuplay@gmail.com>
6
6
  Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
7
8
  Requires-Dist: logging==0.4.9.6
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cli_ih
3
- Version: 0.5.1
3
+ Version: 0.5.1.2
4
4
  Summary: A background command handler for python's command line interface.
5
5
  Author-email: Hotment <michatchuplay@gmail.com>
6
6
  Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
7
8
  Requires-Dist: logging==0.4.9.6
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cli_ih"
3
- version = "0.5.1"
3
+ version = "0.5.1.2"
4
4
  description = "A background command handler for python's command line interface."
5
5
  # readme = "README.md"
6
6
  dependencies=[
@@ -0,0 +1,15 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r") as f:
4
+ description = f.read()
5
+
6
+ setup(
7
+ name="cli_ih",
8
+ version = "0.5.1.2",
9
+ packages=find_packages(),
10
+ install_requires = [
11
+ 'logging==0.4.9.6'
12
+ ],
13
+ long_description=description,
14
+ long_description_content_type="text/markdown"
15
+ )
cli_ih-0.5.1/setup.py DELETED
@@ -1,11 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
-
4
- setup(
5
- name="cli_ih",
6
- version = "0.5.1",
7
- packages=find_packages(),
8
- install_requires = [
9
- 'logging==0.4.9.6'
10
- ]
11
- )
File without changes
File without changes