nodestone 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.
- nodestone-0.0.0/LICENSE +1 -0
- nodestone-0.0.0/PKG-INFO +16 -0
- nodestone-0.0.0/README.md +3 -0
- nodestone-0.0.0/nodestone/__init__.py +1 -0
- nodestone-0.0.0/nodestone.egg-info/PKG-INFO +16 -0
- nodestone-0.0.0/nodestone.egg-info/SOURCES.txt +8 -0
- nodestone-0.0.0/nodestone.egg-info/dependency_links.txt +1 -0
- nodestone-0.0.0/nodestone.egg-info/top_level.txt +1 -0
- nodestone-0.0.0/pyproject.toml +19 -0
- nodestone-0.0.0/setup.cfg +4 -0
nodestone-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Proprietary. All rights reserved, massiron.
|
nodestone-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nodestone
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: nodestone — name reserved. A massiron.com product (coming soon).
|
|
5
|
+
Author: massiron
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://massiron.com
|
|
8
|
+
Keywords: massiron,placeholder
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# nodestone
|
|
15
|
+
|
|
16
|
+
Name reserved. A massiron.com product — coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.0"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nodestone
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: nodestone — name reserved. A massiron.com product (coming soon).
|
|
5
|
+
Author: massiron
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://massiron.com
|
|
8
|
+
Keywords: massiron,placeholder
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# nodestone
|
|
15
|
+
|
|
16
|
+
Name reserved. A massiron.com product — coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodestone
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nodestone"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "nodestone — name reserved. A massiron.com product (coming soon)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [{ name = "massiron" }]
|
|
13
|
+
keywords = ["massiron", "placeholder"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://massiron.com"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
packages = ["nodestone"]
|