Metadata-Version: 2.4
Name: sbenchmark-dependency-test-two
Version: 1.0.1
Summary: Python test library to be used with sbenchmark suite to provide testable version numbers.
Author: Wolfgang Krane
License: MIT
Keywords: dependency,sbenchmark,testpypi
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: sbenchmark-dependency-test-one>=1.0.2

# sbenchmark-dependency-test-two

Minimal library exposing four functions:

Functions:
- `name() -> str`
- `version_number() -> str`
- `version() -> str`
- `dependency() -> str` (delegates to `sbenchmark-dependency-test-one.version()`)

## Usage

```python
from sbenchmark_dependency_test_two import name, version_number, version, dependency

print(name())           # "io.github.sbenchmark:python-dependency-2"
print(version_number()) # "1.0.1"
print(version())        # "io.github.sbenchmark:python-dependency-2,1.0.1"
print(dependency())     # "io.github.sbenchmark:python-dependency-1,1.0.2"
