pyappify 0.0.1__tar.gz → 0.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: pyappify
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: My awesome Python application
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
File without changes
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("PyAppify Hello world")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyappify
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: My awesome Python application
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -0,0 +1,9 @@
1
+ pyproject.toml
2
+ pyappify/__init__.py
3
+ pyappify/main.py
4
+ pyappify.egg-info/PKG-INFO
5
+ pyappify.egg-info/SOURCES.txt
6
+ pyappify.egg-info/dependency_links.txt
7
+ pyappify.egg-info/entry_points.txt
8
+ pyappify.egg-info/requires.txt
9
+ pyappify.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ pyappify
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyappify"
7
- version = "0.0.1"
7
+ version = "0.0.2"
8
8
  description = "My awesome Python application"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -21,4 +21,5 @@ pyappify = "pyappify.main:main"
21
21
  dev = ["twine", "build"]
22
22
 
23
23
  [tool.setuptools.packages.find]
24
- where = ["pyappify"]
24
+ where = ["."]
25
+ include = ["pyappify"]
@@ -1,7 +0,0 @@
1
- pyproject.toml
2
- pyappify/pyappify.egg-info/PKG-INFO
3
- pyappify/pyappify.egg-info/SOURCES.txt
4
- pyappify/pyappify.egg-info/dependency_links.txt
5
- pyappify/pyappify.egg-info/entry_points.txt
6
- pyappify/pyappify.egg-info/requires.txt
7
- pyappify/pyappify.egg-info/top_level.txt
File without changes