Convenient utilities for reading from and writing to Postgres SQL databases.
- Python 3.X
- pip
pip install sql-query-tools
sql-query-tools
utilizes versioneer for versioning. This requires the versioneer.py
in the project's top-level directory, as well as some lines in the package's setup.cfg
and __init__.py
.
Make your changes locally and push to
develop
or a different feature branch.Tag the new version. This will be the version of the package once publication to PyPi is complete.
git tag {major}.{minor}.{patch}
Publish to PyPi.
rm -rf ./dist && python3 setup.py sdist && twine upload -r pypi dist/*
Install the new version of
sql-query-tools
.pip install sql-query-tools=={major}.{minor}.{patch}
Create a pull request.
See changelog.
See license.
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.