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 +7 -0
- pluot-0.0.1/README.md +20 -0
- pluot-0.0.1/pluot/__init__.py +2 -0
- pluot-0.0.1/pluot.egg-info/PKG-INFO +7 -0
- pluot-0.0.1/pluot.egg-info/SOURCES.txt +7 -0
- pluot-0.0.1/pluot.egg-info/dependency_links.txt +1 -0
- pluot-0.0.1/pluot.egg-info/top_level.txt +1 -0
- pluot-0.0.1/pyproject.toml +14 -0
- pluot-0.0.1/setup.cfg +4 -0
pluot-0.0.1/PKG-INFO
ADDED
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 @@
|
|
|
1
|
+
|
|
@@ -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