A collection of python utils for webapps
pip install toolipIf you want to contribute a small change/feature, the best is to just create a PR with your changes. For bigger changes/features it's best to open an issue first and discuss it to agree on the code organization and overall implementation before spending too much time on the code, unless you want to keep it in your own forked repo.
We use the python poetry package to manage this package.
Follow the official instructions to install poetry on your system then once you clone
this repository just just need to do the following to install the dependencies from
the development environment, as well as install toolip in
editable mode:
poetry installThen you can start monitoring the code for changes and run the test suite this way:
poetry shell
scripts/test_watch.shDocumentation for this package is handled by lazydocs and so it needs a few steps to generate it locally.
Inside poetry shell:
lazydocs --overview-file="index.md" \
--src-base-url="https://github.com/SatelCreative/toolip/tree/main" \
--output-path="./docs/api-docs" \
--validate toolip
mkdocs build
mkdocs serveThe default URL is at 127.0.0.1:8000.
We use poetry to manage the dependencies and flit to build and publish to pypi because unlike poetry it allows to set the metadata on pypi such as author or homepage.
- Change the version in the
pyproject.tomlandtoolip/__init__.pyfiles- you can use
poetry version XXXXXto changepyproject.toml
- you can use
- Commit to git
- Run
poetry buildto create the package folders in/dist - Run
flit publishto publish to PyPI - Tag the release in git and push it to Github