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 +5 -0
- wboone-0.1.0/pyproject.toml +13 -0
- wboone-0.1.0/setup.cfg +4 -0
- wboone-0.1.0/wboone/__init__.py +1 -0
- wboone-0.1.0/wboone/__main__.py +7 -0
- wboone-0.1.0/wboone/print_me_funcs.py +2 -0
- wboone-0.1.0/wboone.egg-info/PKG-INFO +5 -0
- wboone-0.1.0/wboone.egg-info/SOURCES.txt +9 -0
- wboone-0.1.0/wboone.egg-info/dependency_links.txt +1 -0
- wboone-0.1.0/wboone.egg-info/entry_points.txt +2 -0
- wboone-0.1.0/wboone.egg-info/top_level.txt +1 -0
wboone-0.1.0/PKG-INFO
ADDED
|
@@ -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 @@
|
|
|
1
|
+
from .print_me_funcs import print_me
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wboone
|