pyspiral 0.1.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- pyspiral-0.1.0/PKG-INFO +14 -0
- pyspiral-0.1.0/README.md +0 -0
- pyspiral-0.1.0/pyproject.toml +15 -0
- pyspiral-0.1.0/pyspiral/__init__.py +0 -0
pyspiral-0.1.0/PKG-INFO
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pyspiral
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary:
|
5
|
+
Author: Nicholas Gates
|
6
|
+
Author-email: nick@nickgates.com
|
7
|
+
Requires-Python: >=3.9,<4.0
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Programming Language :: Python :: 3.9
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
|
14
|
+
|
pyspiral-0.1.0/README.md
ADDED
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
[tool.poetry]
|
2
|
+
name = "pyspiral"
|
3
|
+
version = "0.1.0"
|
4
|
+
description = ""
|
5
|
+
authors = ["Nicholas Gates <nick@nickgates.com>"]
|
6
|
+
readme = "README.md"
|
7
|
+
packages = [{include = "pyspiral"}]
|
8
|
+
|
9
|
+
[tool.poetry.dependencies]
|
10
|
+
python = "^3.9"
|
11
|
+
|
12
|
+
|
13
|
+
[build-system]
|
14
|
+
requires = ["poetry-core"]
|
15
|
+
build-backend = "poetry.core.masonry.api"
|
File without changes
|