nodyn 0.0.0__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.
- nodyn-0.0.0/PKG-INFO +14 -0
- nodyn-0.0.0/README.md +5 -0
- nodyn-0.0.0/pyproject.toml +15 -0
nodyn-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nodyn
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved name of the Nodyn command-line tool by Nodyn BV. Releases are distributed privately.
|
|
5
|
+
Author: Nodyn BV
|
|
6
|
+
Classifier: Development Status :: 1 - Planning
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# nodyn
|
|
11
|
+
|
|
12
|
+
This name is reserved for the Nodyn command-line tool by Nodyn BV.
|
|
13
|
+
This version contains no code and installs no command. Nodyn releases are
|
|
14
|
+
currently distributed privately.
|
nodyn-0.0.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling==1.31.0"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nodyn"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved name of the Nodyn command-line tool by Nodyn BV. Releases are distributed privately."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
authors = [{ name = "Nodyn BV" }]
|
|
12
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
13
|
+
|
|
14
|
+
[tool.hatch.build.targets.wheel]
|
|
15
|
+
bypass-selection = true
|