Metadata-Version: 2.1
Name: poetry-version
Version: 0.1.5
Summary: Python library for extracting version from poetry pyproject.toml file
Home-page: https://github.com/rominf/poetry-version
Author: Roman Inflianskas
Author-email: infroma@gmail.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
License-File: LICENSE

# poetry-version
Python library for extracting version from poetry pyproject.toml file

## Installation
To install `poetry-version` from [PyPI](https://pypi.org/project/poetry-version/) run:
```shell
$ pip install poetry-version
```

## Usage
Put these lines somewhere in the main module:
```python
import poetry_version

__version__ = poetry_version.extract(source_file=__file__)
```
