…(in PR comment): ## What was done (in Terminal, autocrop directory): ``` poetry init # Made the necessary poetry files to build the package poetry run pytest -vs # Run the tests PRIOR to adding any dependency. It did not require any addition. ``` Adding any dependency may be done with the `poetry add [dependency]` command in the above directory. ## Packaging your distribution and Publishing to PyPI To package and publish any future versions [ by the project maintainer ], you will have to first configure your PyPI API token to Poetry with the `poetry config pypi-token.pypi [your-api-token]` command. This will only need to be done once. Packaging your new versions with poetry and publishing them to PyPi may then be done by running the below lines, respectively: ``` poetry build poetry publish ``` Reference: [How To Publish Python Packages to PyPI using Poetry on Ubuntu 22.04](https://www.digitalocean.com/community/tutorials/how-to-publish-python-packages-to-pypi-using-poetry-on-ubuntu-22-04)
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by andrewrgarcia and has received 0 comments.