sbenchmark-dependency-test-two 1.0.1__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,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: sbenchmark-dependency-test-two
3
+ Version: 1.0.1
4
+ Summary: Python test library to be used with sbenchmark suite to provide testable version numbers.
5
+ Author: Wolfgang Krane
6
+ License: MIT
7
+ Keywords: dependency,sbenchmark,testpypi
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
+ Requires-Dist: sbenchmark-dependency-test-one>=1.0.2
15
+
16
+ # sbenchmark-dependency-test-two
17
+
18
+ Minimal library exposing four functions:
19
+
20
+ Functions:
21
+ - `name() -> str`
22
+ - `version_number() -> str`
23
+ - `version() -> str`
24
+ - `dependency() -> str` (delegates to `sbenchmark-dependency-test-one.version()`)
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from sbenchmark_dependency_test_two import name, version_number, version, dependency
30
+
31
+ print(name()) # "io.github.sbenchmark:python-dependency-2"
32
+ print(version_number()) # "1.0.1"
33
+ print(version()) # "io.github.sbenchmark:python-dependency-2,1.0.1"
34
+ print(dependency()) # "io.github.sbenchmark:python-dependency-1,1.0.2"
@@ -0,0 +1,19 @@
1
+ # sbenchmark-dependency-test-two
2
+
3
+ Minimal library exposing four functions:
4
+
5
+ Functions:
6
+ - `name() -> str`
7
+ - `version_number() -> str`
8
+ - `version() -> str`
9
+ - `dependency() -> str` (delegates to `sbenchmark-dependency-test-one.version()`)
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from sbenchmark_dependency_test_two import name, version_number, version, dependency
15
+
16
+ print(name()) # "io.github.sbenchmark:python-dependency-2"
17
+ print(version_number()) # "1.0.1"
18
+ print(version()) # "io.github.sbenchmark:python-dependency-2,1.0.1"
19
+ print(dependency()) # "io.github.sbenchmark:python-dependency-1,1.0.2"
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sbenchmark-dependency-test-two"
7
+ version = "1.0.1"
8
+ description = "Python test library to be used with sbenchmark suite to provide testable version numbers."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Wolfgang Krane" }]
13
+ keywords = ["dependency", "sbenchmark", "testpypi"]
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
+ ]
20
+ dependencies = [
21
+ "sbenchmark-dependency-test-one>=1.0.2"
22
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,26 @@
1
+ """
2
+ Python ≥3.12.
3
+ Depends on sbenchmark-dependency-test-one.
4
+ """
5
+
6
+ from sbenchmark_dependency_test_one import version as deponeversion
7
+
8
+ __all__ = ["name", "version_number", "version", "dependency", "__version__"]
9
+
10
+ __version__: str = "1.0.1"
11
+
12
+
13
+ def name() -> str:
14
+ return "io.github.sbenchmark:python-dependency-2"
15
+
16
+
17
+ def version_number() -> str:
18
+ return __version__
19
+
20
+
21
+ def version() -> str:
22
+ return f"{name()},{version_number()}"
23
+
24
+
25
+ def dependency() -> str:
26
+ return deponeversion()
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: sbenchmark-dependency-test-two
3
+ Version: 1.0.1
4
+ Summary: Python test library to be used with sbenchmark suite to provide testable version numbers.
5
+ Author: Wolfgang Krane
6
+ License: MIT
7
+ Keywords: dependency,sbenchmark,testpypi
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
+ Requires-Dist: sbenchmark-dependency-test-one>=1.0.2
15
+
16
+ # sbenchmark-dependency-test-two
17
+
18
+ Minimal library exposing four functions:
19
+
20
+ Functions:
21
+ - `name() -> str`
22
+ - `version_number() -> str`
23
+ - `version() -> str`
24
+ - `dependency() -> str` (delegates to `sbenchmark-dependency-test-one.version()`)
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from sbenchmark_dependency_test_two import name, version_number, version, dependency
30
+
31
+ print(name()) # "io.github.sbenchmark:python-dependency-2"
32
+ print(version_number()) # "1.0.1"
33
+ print(version()) # "io.github.sbenchmark:python-dependency-2,1.0.1"
34
+ print(dependency()) # "io.github.sbenchmark:python-dependency-1,1.0.2"
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/sbenchmark_dependency_test_two/__init__.py
4
+ src/sbenchmark_dependency_test_two.egg-info/PKG-INFO
5
+ src/sbenchmark_dependency_test_two.egg-info/SOURCES.txt
6
+ src/sbenchmark_dependency_test_two.egg-info/dependency_links.txt
7
+ src/sbenchmark_dependency_test_two.egg-info/requires.txt
8
+ src/sbenchmark_dependency_test_two.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ sbenchmark-dependency-test-one>=1.0.2