Metadata-Version: 2.1
Name: DiscoverVersion
Version: 0.1.2
Summary: Version discovery for Python packages
Author-email: Lars Pastewka <lars.pastewka@imtek.uni-freiburg.de>
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Requires-Dist: flake8 ; extra == "test"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Requires-Dist: pytest-flake8 ; extra == "test"
Project-URL: changelog, https://github.com/imtek-simulation/DiscoverVersion/blob/master/CHANGELOG.md
Project-URL: documentation, https://imtek-simulation.github.io/DiscoverVersion/
Project-URL: repository, https://github.com/imtek-simulation/DiscoverVersion
Provides-Extra: test

# DiscoverVersion

This package automatically discover version information for a package. It
first asks `importlib`, and if that fails tries to get the version from local
`git` repository. It is intended as a lightweight replacement for
`setuptools_scm`.

## Tests

Before being able to run tests, you need to execute
```python
pip install -e .[test] 
```
to editably install the code.
