Metadata-Version: 2.1
Name: pypi_poetry_template
Version: 0.1.3
Summary: a template for build python package to upload pypi repository bu using poetry
License: MIT
Keywords: packaging,poetry,template
Author: lgf4591
Author-email: lgf4591@outlook.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Project-URL: Bug Tracker, https://github.com/lgf4591/pypi_poetry_templat/issues
Project-URL: documentation, https://github.com/lgf4591/pypi_poetry_template/blob/main/README.md
Project-URL: homepage, https://github.com/lgf4591/pypi_poetry_template
Project-URL: repository, https://github.com/lgf4591/pypi_poetry_template
Description-Content-Type: text/markdown

# pypi_poetry_template
a template for build python package to upload pypi repository bu using poetry

```bash

poetry init

poetry env use python

poetry add python-dotenv
poetry add pytest pytest-mock --group test
poetry add flake8 pylint mypy --group lint
poetry add black isort yapf --group format
poetry add mkdocs --group docs


poetry install --with test,docs --without docs
poetry install --only main
poetry remove mkdocs --group docs



poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry build
poetry publish -r testpypi
poetry publish

```


# References:
- [publishing-a-package-to-pypi-with-poetry](https://www.ianwootten.co.uk/2020/10/20/publishing-a-package-to-pypi-with-poetry/)


