wboone 0.1.0__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.
wboone-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: wboone
3
+ Version: 0.1.0
4
+ Summary: My first Python package, built while learning packaging.
5
+ Author: Willie D. Boone
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "wboone"
7
+ version = "0.1.0"
8
+ description = "My first Python package, built while learning packaging."
9
+ authors = [
10
+ { name = "Willie D. Boone" }
11
+ ]
12
+ [project.scripts]
13
+ wboone = 'wboone.__main__:main'
wboone-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from .print_me_funcs import print_me
@@ -0,0 +1,7 @@
1
+ from .print_me_funcs import print_me
2
+
3
+ def main():
4
+ print_me()
5
+
6
+ if __name__ == '__main__':
7
+ main()
@@ -0,0 +1,2 @@
1
+ def print_me():
2
+ print("Hi, my name is Willie")
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: wboone
3
+ Version: 0.1.0
4
+ Summary: My first Python package, built while learning packaging.
5
+ Author: Willie D. Boone
@@ -0,0 +1,9 @@
1
+ pyproject.toml
2
+ wboone/__init__.py
3
+ wboone/__main__.py
4
+ wboone/print_me_funcs.py
5
+ wboone.egg-info/PKG-INFO
6
+ wboone.egg-info/SOURCES.txt
7
+ wboone.egg-info/dependency_links.txt
8
+ wboone.egg-info/entry_points.txt
9
+ wboone.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wboone = wboone.__main__:main
@@ -0,0 +1 @@
1
+ wboone