spdx-python-model 0.0.1__tar.gz → 0.0.3__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.
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/PKG-INFO +3 -4
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/pyproject.toml +3 -4
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/src/spdx_python_model/bindings/v3_0_1.py +775 -381
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/src/spdx_python_model/version.py +1 -1
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/.github/workflows/publish.yaml +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/.github/workflows/test.yaml +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/.gitignore +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/LICENSE +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/README.md +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/gen/generate-bindings +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/src/spdx_python_model/__init__.py +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/src/spdx_python_model/bindings/__init__.py +0 -0
- {spdx_python_model-0.0.1 → spdx_python_model-0.0.3}/tests/test_import.py +0 -0
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spdx_python_model
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: SPDX Model Python Bindings
|
|
5
5
|
Project-URL: Homepage, https://github.com/spdx/spdx-python-model
|
|
6
6
|
Project-URL: Repository, https://github.com/spdx/spdx-python-model.git
|
|
7
7
|
Project-URL: Issues, https://github.com/spdx/spdx-python-model/issues
|
|
8
8
|
Author-email: Joshua Watt <JPEWhacker@gmail.com>
|
|
9
|
+
License-Expression: Apache-2.0
|
|
9
10
|
License-File: LICENSE
|
|
10
11
|
Classifier: Development Status :: 4 - Beta
|
|
11
12
|
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Topic :: Software Development ::
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
19
|
Requires-Python: >=3.9
|
|
20
20
|
Provides-Extra: dev
|
|
21
21
|
Requires-Dist: pytest>=7.4; extra == 'dev'
|
|
22
|
-
Requires-Dist: shacl2code==0.0.20; extra == 'dev'
|
|
23
22
|
Description-Content-Type: text/markdown
|
|
24
23
|
|
|
25
24
|
# spdx-python-model
|
|
@@ -11,18 +11,17 @@ readme = "README.md"
|
|
|
11
11
|
classifiers = [
|
|
12
12
|
"Development Status :: 4 - Beta",
|
|
13
13
|
"Intended Audience :: Developers",
|
|
14
|
-
"Topic :: Software Development ::
|
|
15
|
-
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
16
15
|
"Programming Language :: Python :: 3",
|
|
17
16
|
"Programming Language :: Python :: 3.9",
|
|
18
17
|
"Programming Language :: Python :: 3.10",
|
|
19
18
|
"Programming Language :: Python :: 3.11",
|
|
20
19
|
"Programming Language :: Python :: 3.12",
|
|
21
20
|
]
|
|
21
|
+
license = "Apache-2.0"
|
|
22
22
|
|
|
23
23
|
[project.optional-dependencies]
|
|
24
24
|
dev = [
|
|
25
|
-
"shacl2code == 0.0.20",
|
|
26
25
|
"pytest >= 7.4",
|
|
27
26
|
]
|
|
28
27
|
|
|
@@ -35,7 +34,7 @@ Issues = "https://github.com/spdx/spdx-python-model/issues"
|
|
|
35
34
|
requires = [
|
|
36
35
|
"hatchling",
|
|
37
36
|
"hatch-build-scripts",
|
|
38
|
-
"shacl2code == 0.0.
|
|
37
|
+
"shacl2code == 0.0.22",
|
|
39
38
|
]
|
|
40
39
|
build-backend = "hatchling.build"
|
|
41
40
|
|