pluot 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.
pluot-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: pluot
3
+ Version: 0.0.1
4
+ Summary: pluot
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Operating System :: OS Independent
7
+ Requires-Python: >=3.7
pluot-0.0.1/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # pluot
2
+
3
+ ## Publishing
4
+
5
+ To publish this package to PyPI:
6
+
7
+ 1. Install build tools and twine:
8
+ ```bash
9
+ pip install build twine
10
+ ```
11
+
12
+ 2. Build the distribution packages:
13
+ ```bash
14
+ python3 -m build
15
+ ```
16
+
17
+ 3. Upload to PyPI:
18
+ ```bash
19
+ python3 -m twine upload dist/*
20
+ ```
@@ -0,0 +1,2 @@
1
+ def hello_world():
2
+ print("hello world")
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: pluot
3
+ Version: 0.0.1
4
+ Summary: pluot
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Operating System :: OS Independent
7
+ Requires-Python: >=3.7
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ pluot/__init__.py
4
+ pluot.egg-info/PKG-INFO
5
+ pluot.egg-info/SOURCES.txt
6
+ pluot.egg-info/dependency_links.txt
7
+ pluot.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ pluot
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pluot"
7
+ version = "0.0.1"
8
+ description = "pluot"
9
+ authors = []
10
+ classifiers = [
11
+ "Programming Language :: Python :: 3",
12
+ "Operating System :: OS Independent",
13
+ ]
14
+ requires-python = ">=3.7"
pluot-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+