openshell 0.0.0a0__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.
@@ -0,0 +1,4 @@
1
+ include README.md
2
+ include pyproject.toml
3
+ include PKG-INFO
4
+ recursive-include src *.py
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.1
2
+ Name: openshell
3
+ Version: 0.0.0a0
4
+ Summary: Zero version placeholder for openshell
5
+ Author: NVIDIA Kitmaker Team
6
+ Author-email: kitmaker@nvidia.com
7
+ License: Apache-2.0
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Software Development :: Libraries
13
+ Description-Content-Type: text/markdown
@@ -0,0 +1,3 @@
1
+ # openshell
2
+
3
+ Zero version placeholder for openshell
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["hatchling", "pyelftools"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "openshell"
7
+ version = "0.0.0a0"
8
+ description = "Zero version placeholder for openshell"
9
+ license = "Apache-2.0"
10
+ authors = [
11
+ {name = "NVIDIA Kitmaker Team", email = "kitmaker@nvidia.com"},
12
+ ]
13
+ dependencies = []
14
+
15
+
@@ -0,0 +1,3 @@
1
+ """Empty package openshell."""
2
+
3
+ __version__ = "0.0.0a0"