Metadata-Version: 2.3
Name: sir-utilities
Version: 0.1.6
Summary: A collection of personal tools, utilities and helpers.
Author: sirEven
Author-email: sir_even@icloud.com
Requires-Python: >=3.10,<4
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Description-Content-Type: text/markdown

Maintaining this Package
1) Implement changes on main or any branch derived from main
2) Merge derived branch with finished changes back to main
3) Push to main in order to provide new state to other devs and to trigger test suite run
4) Merge main to release branch
5) Once all changes of a realese are finished, on release branch bump version number via `poetry version patch`
6) Push to release in order to trigger test suite run and publish the new version to pypi.org
7) Merge release back to main in order to sync the version number


Note to myself: Don't create a root folder by hand in which you call poetry new <package name> -> this will lead to one extra leveled root that you don't want.
e.g.: sir_utilites/sir_utilites/sir_utilites - simply call poetry new where you want your new package to live (for example among other packages in a folder called python_packages)
