Last active
September 8, 2022 21:19
-
-
Save gotofritz/b5800f01a52d1ba400d82cfd891029a2 to your computer and use it in GitHub Desktop.
fragments of pyproject.toml for new projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "my-project" | |
version = "0.1.0" | |
description = "It's my project, yo" | |
authors = ["gotofritz <[email protected]>"] | |
license = "MIT" | |
readme = "README.md" | |
homepage = "https://github.com/gotofritz/my-project" | |
repository = "https://github.com/gotofritz/my-project" | |
[tool.poetry.dependencies] | |
python = "3.10.4" | |
[tool.poetry.dev-dependencies] | |
black = "*" | |
darglint = "*" | |
flake8 = "*" | |
flake8-bugbear = "*" | |
flake8-docstrings = "*" | |
flake8-pytest-style = "*" | |
flakehell = "*" | |
isort = "*" | |
mypy = "*" | |
pep8-naming = "*" | |
pytest = "*" | |
[tool.black] | |
line-length = 88 | |
target-version = ['py310'] | |
include = '\.pyi?$' | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment