sbenchmark-dependency-test-one 1.0.2__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.
- sbenchmark_dependency_test_one-1.0.2/PKG-INFO +30 -0
- sbenchmark_dependency_test_one-1.0.2/README.md +16 -0
- sbenchmark_dependency_test_one-1.0.2/pyproject.toml +19 -0
- sbenchmark_dependency_test_one-1.0.2/setup.cfg +4 -0
- sbenchmark_dependency_test_one-1.0.2/src/sbenchmark_dependency_test_one/__init__.py +16 -0
- sbenchmark_dependency_test_one-1.0.2/src/sbenchmark_dependency_test_one.egg-info/PKG-INFO +30 -0
- sbenchmark_dependency_test_one-1.0.2/src/sbenchmark_dependency_test_one.egg-info/SOURCES.txt +7 -0
- sbenchmark_dependency_test_one-1.0.2/src/sbenchmark_dependency_test_one.egg-info/dependency_links.txt +1 -0
- sbenchmark_dependency_test_one-1.0.2/src/sbenchmark_dependency_test_one.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sbenchmark-dependency-test-one
|
|
3
|
+
Version: 1.0.2
|
|
4
|
+
Summary: Python test library to be used with sbenchmark suite have testable dependency version number.
|
|
5
|
+
Author: Wolfgang Krane
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: dependency,sbenchmark
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# sbenchmark-dependency-test-one
|
|
16
|
+
|
|
17
|
+
Minimal library exposing three functions:
|
|
18
|
+
|
|
19
|
+
- `name() -> str`
|
|
20
|
+
- `version_number() -> str`
|
|
21
|
+
- `version() -> str`
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
from sbenchmark_dependency_test_one import name, version_number, version
|
|
27
|
+
|
|
28
|
+
print(name()) # "io.github.sbenchmark:python-dependency-1"
|
|
29
|
+
print(version_number()) # "1.0.2"
|
|
30
|
+
print(version()) # "io.github.sbenchmark:python-dependency-1,1.0.2"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# sbenchmark-dependency-test-one
|
|
2
|
+
|
|
3
|
+
Minimal library exposing three functions:
|
|
4
|
+
|
|
5
|
+
- `name() -> str`
|
|
6
|
+
- `version_number() -> str`
|
|
7
|
+
- `version() -> str`
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```python
|
|
12
|
+
from sbenchmark_dependency_test_one import name, version_number, version
|
|
13
|
+
|
|
14
|
+
print(name()) # "io.github.sbenchmark:python-dependency-1"
|
|
15
|
+
print(version_number()) # "1.0.2"
|
|
16
|
+
print(version()) # "io.github.sbenchmark:python-dependency-1,1.0.2"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sbenchmark-dependency-test-one"
|
|
7
|
+
version = "1.0.2"
|
|
8
|
+
description = "Python test library to be used with sbenchmark suite have testable dependency version number."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Wolfgang Krane" }]
|
|
13
|
+
keywords = ["dependency", "sbenchmark"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Python ≥3.12. Exposes name, version_number, version.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
__all__ = ["name", "version_number", "version", "__version__"]
|
|
6
|
+
|
|
7
|
+
__version__: str = "1.0.2"
|
|
8
|
+
|
|
9
|
+
def name() -> str:
|
|
10
|
+
return "io.github.sbenchmark:python-dependency-1"
|
|
11
|
+
|
|
12
|
+
def version_number() -> str:
|
|
13
|
+
return __version__
|
|
14
|
+
|
|
15
|
+
def version() -> str:
|
|
16
|
+
return f"{name()},{version_number()}"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sbenchmark-dependency-test-one
|
|
3
|
+
Version: 1.0.2
|
|
4
|
+
Summary: Python test library to be used with sbenchmark suite have testable dependency version number.
|
|
5
|
+
Author: Wolfgang Krane
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: dependency,sbenchmark
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# sbenchmark-dependency-test-one
|
|
16
|
+
|
|
17
|
+
Minimal library exposing three functions:
|
|
18
|
+
|
|
19
|
+
- `name() -> str`
|
|
20
|
+
- `version_number() -> str`
|
|
21
|
+
- `version() -> str`
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
from sbenchmark_dependency_test_one import name, version_number, version
|
|
27
|
+
|
|
28
|
+
print(name()) # "io.github.sbenchmark:python-dependency-1"
|
|
29
|
+
print(version_number()) # "1.0.2"
|
|
30
|
+
print(version()) # "io.github.sbenchmark:python-dependency-1,1.0.2"
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/sbenchmark_dependency_test_one/__init__.py
|
|
4
|
+
src/sbenchmark_dependency_test_one.egg-info/PKG-INFO
|
|
5
|
+
src/sbenchmark_dependency_test_one.egg-info/SOURCES.txt
|
|
6
|
+
src/sbenchmark_dependency_test_one.egg-info/dependency_links.txt
|
|
7
|
+
src/sbenchmark_dependency_test_one.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
sbenchmark_dependency_test_one-1.0.2/src/sbenchmark_dependency_test_one.egg-info/top_level.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sbenchmark_dependency_test_one
|