Skip to content

Instantly share code, notes, and snippets.

@kprasad99
Last active August 29, 2023 11:49
Show Gist options
  • Save kprasad99/76a8beaca3bf54651f0b620049f24313 to your computer and use it in GitHub Desktop.
Save kprasad99/76a8beaca3bf54651f0b620049f24313 to your computer and use it in GitHub Desktop.
Steps to create Python Package using Python Poetry

Create Python Package Using Python-poetry

  • Install Poetry
$ pip install poetry
  • Create New Project
$ poetry new my-pkg
  • change directory into new project
$ cd my-pkg
  • Create poetry.toml
$ poetry config virtualenvs.create true --local
$ poetry config virtualenvs.in-project true --local
#$ poetry config repositories.foo https://foo.bar/simple/ //optional
  • Create virtual environment
python -m venv .venv
  • Activate venv
$ source .venv/bin/activate
  • Install poetry inside new venv again
$ pip install poetry
  • Update `pyproject.toml file
[tool.poetry]
name = "my-pkg"
version = "0.1.0"
description = "My Project"
authors = ["Karthik Prasad"]
readme = "README.md"
license = "MIT"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Automation Suite :: Pytest"
]

[tool.poetry.dependencies]
python = "^3.8"

[tool.poetry.dev-dependencies]
pytest = "^5.2"
allure-pytest = "^2.9.45"

#[tool.poetry.scripts]
#my-pkg = 'my-pkg:main'

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
  • Check `poetry.toml file validity.
$ poetry check
  • Install package
$ poetry install
  • Run tests
$ pytest --alluredir=allure-reports/
  • Update .vscode/settings.json with virtual environment
{
    "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python"
}
  • View Allure reports
$ allure serve allure-reports/
  • Build the project
$ poetry build
  • Publish the package
$  poetry publish -r my-pkg
  • Exit virtual env
$ deactivate
  • (Optional) create requirements.tx
$ pip freeze > requirements.txt
  • (optional) Install from requrements.tx
$ pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment