nominal 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.
- nominal-0.0.1/LICENSE +0 -0
- nominal-0.0.1/PKG-INFO +8 -0
- nominal-0.0.1/README.md +0 -0
- nominal-0.0.1/pyproject.toml +18 -0
- nominal-0.0.1/setup.cfg +4 -0
- nominal-0.0.1/src/nominal.egg-info/PKG-INFO +8 -0
- nominal-0.0.1/src/nominal.egg-info/SOURCES.txt +8 -0
- nominal-0.0.1/src/nominal.egg-info/dependency_links.txt +1 -0
- nominal-0.0.1/src/nominal.egg-info/top_level.txt +1 -0
- nominal-0.0.1/src/nominal.py +0 -0
nominal-0.0.1/LICENSE
ADDED
|
File without changes
|
nominal-0.0.1/PKG-INFO
ADDED
nominal-0.0.1/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "setuptools-scm"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nominal"
|
|
7
|
+
authors = [
|
|
8
|
+
{name = "JP", email = "jack.parmer@pm.me"}
|
|
9
|
+
]
|
|
10
|
+
description = "Stub for Nominal Python package"
|
|
11
|
+
version = "0.0.1"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
dependencies = [
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[tool.distutils.bdist_wheel]
|
|
18
|
+
universal = true
|
nominal-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nominal
|
|
File without changes
|