nordstat 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.
- nordstat-0.0.1/PKG-INFO +10 -0
- nordstat-0.0.1/README.md +3 -0
- nordstat-0.0.1/nordstat/__init__.py +1 -0
- nordstat-0.0.1/nordstat.egg-info/PKG-INFO +10 -0
- nordstat-0.0.1/nordstat.egg-info/SOURCES.txt +7 -0
- nordstat-0.0.1/nordstat.egg-info/dependency_links.txt +1 -0
- nordstat-0.0.1/nordstat.egg-info/top_level.txt +1 -0
- nordstat-0.0.1/pyproject.toml +10 -0
- nordstat-0.0.1/setup.cfg +4 -0
nordstat-0.0.1/PKG-INFO
ADDED
nordstat-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nordstat
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nordstat"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder release reserving the nordstat name on PyPI."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
nordstat-0.0.1/setup.cfg
ADDED