-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.2 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.black]
line-length=100
[tool.poetry]
name = "cookiecutter-pypackage"
version = "0.0.0"
description = "Cookiecutter to create a Python package. Powered by Poetry, GitHub actions, and MkDocs-Material."
authors = ["Marco Gancitano <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/mgancita/cookiecutter-pypackage"
repository = "https://github.com/mgancita/cookiecutter-pypackage"
keywords = ["cookiecutter", "packaging"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
cookiecutter = "^1.7.0"
pytest = "^5.4.0"
pytest-cov = "^2.10.0"
pytest-cookies = "^0.5.0"
invoke = "^1.4.0"
flake8 = "^4.0.0"
flake8-docstrings = "1.6.0"
flake8-import-order = "0.18.1"
flake8-colors = "0.1.8"
mypy = "0.960"
black = "22.3.0"
mkdocs-material = "^6.1.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"