feat: setup py and docs
This commit is contained in:
parent
3cc3e8c9d8
commit
4c86c19732
@ -28,3 +28,10 @@ make_cards(
|
|||||||
["tags"],
|
["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
26
setup.py
Normal 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)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user