Browse Source

feat: setup py and docs

main
cellarspoon 2 years ago
parent
commit
4c86c19732
No known key found for this signature in database GPG Key ID: 3789458B3D0C410
  1. 7
      README.md
  2. 26
      setup.py

7
README.md

@ -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

@ -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)
Loading…
Cancel
Save