Thank you for considering contributing to this project! Here are some guidelines to help you get started.
This project uses Poetry for dependency management. To install the dependencies, follow these steps:
- Install Poetry if you haven't already:
curl -sSL https://install.python-poetry.org | python3 -
- Install the project dependencies:
poetry install
To build the package, run the following command:
poetry build
This will create a source distribution and a wheel in the dist
directory.
To publish the package to PyPI, follow these steps:
- Ensure you have a valid PyPI account and have configured your credentials using Poetry:
poetry config pypi-token.pypi <your-token>
- Publish the package:
poetry publish --build
This will upload the package to PyPI, making it available for others to install.