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.
- baiwusanyu_python_package-0.0.1/PKG-INFO +27 -0
- baiwusanyu_python_package-0.0.1/README.md +17 -0
- baiwusanyu_python_package-0.0.1/pyproject.toml +23 -0
- baiwusanyu_python_package-0.0.1/setup.cfg +4 -0
- baiwusanyu_python_package-0.0.1/src/baiwusanyu_python_package.egg-info/PKG-INFO +27 -0
- baiwusanyu_python_package-0.0.1/src/baiwusanyu_python_package.egg-info/SOURCES.txt +8 -0
- baiwusanyu_python_package-0.0.1/src/baiwusanyu_python_package.egg-info/dependency_links.txt +1 -0
- baiwusanyu_python_package-0.0.1/src/baiwusanyu_python_package.egg-info/top_level.txt +1 -0
- baiwusanyu_python_package-0.0.1/src/my_python_package/__init__.py +2 -0
- baiwusanyu_python_package-0.0.1/src/my_python_package/main.py +2 -0
|
@@ -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,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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
my_python_package
|