PyBites-Open-Source / pybites-tools

A repo to commit common Python utility scripts and snippets
MIT License
18 stars 8 forks source link

group requirements, manage it in pyproject only #16

Closed bbelderbos closed 1 year ago

bbelderbos commented 2 years ago

see https://flit.readthedocs.io/_/downloads/en/latest/pdf/ - page 9

this works now:

pip install . -> installs base (common) requirements pip install ".[aws]" -> installs aws requirements pip install ".[zen]" -> installs zen requirements

bbelderbos commented 1 year ago

not pursuing for now