baiwusanyu-python-package 0.0.1__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.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: baiwusanyu-python-package
3
+ Version: 0.0.1
4
+ Summary: A simple python package example
5
+ Author-email: Your Name <your@email.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+
11
+ # My Python Package
12
+
13
+ This is a demo python package.
14
+
15
+ ## Install
16
+
17
+ ```bash
18
+ pip install my-python-package
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ ```python
24
+ from my_python_package import hello
25
+
26
+ hello()
27
+ ```
@@ -0,0 +1,17 @@
1
+ # My Python Package
2
+
3
+ This is a demo python package.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install my-python-package
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from my_python_package import hello
15
+
16
+ hello()
17
+ ```
@@ -0,0 +1,23 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "baiwusanyu-python-package"
7
+ version = "0.0.1"
8
+ description = "A simple python package example"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ authors = [
12
+ {name="Your Name", email="your@email.com"}
13
+ ]
14
+
15
+ dependencies = []
16
+
17
+ classifiers = [
18
+ "Programming Language :: Python :: 3",
19
+ "Operating System :: OS Independent",
20
+ ]
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: baiwusanyu-python-package
3
+ Version: 0.0.1
4
+ Summary: A simple python package example
5
+ Author-email: Your Name <your@email.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+
11
+ # My Python Package
12
+
13
+ This is a demo python package.
14
+
15
+ ## Install
16
+
17
+ ```bash
18
+ pip install my-python-package
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ ```python
24
+ from my_python_package import hello
25
+
26
+ hello()
27
+ ```
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/baiwusanyu_python_package.egg-info/PKG-INFO
4
+ src/baiwusanyu_python_package.egg-info/SOURCES.txt
5
+ src/baiwusanyu_python_package.egg-info/dependency_links.txt
6
+ src/baiwusanyu_python_package.egg-info/top_level.txt
7
+ src/my_python_package/__init__.py
8
+ src/my_python_package/main.py
@@ -0,0 +1,2 @@
1
+ from .main import hello
2
+
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ print("Hello World!")