feat: setup py and docs

This commit is contained in:
cellarspoon 2021-12-09 12:01:12 +01:00
parent 3cc3e8c9d8
commit 4c86c19732
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410
2 changed files with 33 additions and 0 deletions

View File

@ -28,3 +28,10 @@ make_cards(
["tags"],
)
```
## publish it
- bump the version number in [`pyproject.toml`](./pyproject.toml)
- `pip install poetry2setup && poetry2setup > setup.py`
- `git add . && git commit -m "chore: publish new version"`
- `poetry publish --build`

26
setup.py Normal file
View File

@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from setuptools import setup
modules = \
['temp_index']
install_requires = \
['calibrestekje>=0.0.3,<0.0.4', 'reportlab>=3.6.3,<4.0.0']
setup_kwargs = {
'name': 'temp-index',
'version': '0.2.0',
'description': '',
'long_description': None,
'author': 'automatist',
'author_email': None,
'maintainer': None,
'maintainer_email': None,
'url': None,
'py_modules': modules,
'install_requires': install_requires,
'python_requires': '>=3.9,<4.0',
}
setup(**setup_kwargs)