Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mshenhera/ced9c3f98d494eb435552eec5b7b3d00 to your computer and use it in GitHub Desktop.
Save mshenhera/ced9c3f98d494eb435552eec5b7b3d00 to your computer and use it in GitHub Desktop.
sample of pyproject.toml with local version identifiers: https://www.python.org/dev/peps/pep-0440/#local-version-identifiers
[tool.poetry]
name = "sampleproject"
version = "0.1.2+77cc516"
description = ""
authors = ["Your Name <you@example.com>"]
packages = [
{ include = "sample" }
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment