Skip to content

Latest commit

 

History

History
76 lines (43 loc) · 1.75 KB

README.rst

File metadata and controls

76 lines (43 loc) · 1.75 KB

graphics/sql_query_tools_logo.png

Convenient utilities for reading from and writing to Postgres SQL databases.



🏁 Getting Started

🧿 Prerequisites

  • Python 3.X
  • pip

⚙️ Installation

pip install sql-query-tools

🌈 Releasing

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.

  1. Make your changes locally and push to develop or a different feature branch.

  2. Tag the new version. This will be the version of the package once publication to PyPi is complete.

    git tag {major}.{minor}.{patch}
  3. Publish to PyPi.

    rm -rf ./dist && python3 setup.py sdist && twine upload -r pypi dist/*
  4. Install the new version of sql-query-tools.

    pip install sql-query-tools=={major}.{minor}.{patch}
  5. Create a pull request.

⚓️ Changelog

See changelog.

📜 License

See license.

🙏 Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.