forked from waynerv/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (62 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool]
[tool.poetry]
name = "cookiecutter-pypackage"
version = "0.0.1"
description = "Cookiecutter template for a Python package"
license = "BSD-3-Clause"
authors = ["Euan Mason <[email protected]>"]
readme = "README.md"
repository = "https://github.com/EuanMason/cookiecutter-pypackage/"
documentation = "https://EuanMason.github.io/cookiecutter-pypackage/"
keywords = ['cookiecutter', 'template', 'package']
include = [
'{{cookiecutter.project_slug}}/**/*',
'cookiecutter.json',
'hooks/*'
]
[tool.poetry.dependencies]
python = ">=3.11.*"
cookiecutter = "^2.6.0"
pytest = {version = "^8.0.2", optional=true}
pytest-cookies = {version = "^0.7.0", optional=true}
pyyaml = {version="^6.0.1",optional=true}
mkdocs = {version="^1.5.3",optional=true}
mkdocs-material = {version="^9.5.11",optional=true}
mkdocs-material-extensions = {version="^1.3.1",optional=true}
mkdocs-include-markdown-plugin = {version = "^6.0.4", optional=true}
pytest-cov = {version="^4.1.0",optional=true}
tox = {version = "^4.13.0", optional=true}
click = {version = "^8.1.7", optional = true}
[tool.poetry.extras]
dev = [
"pytest",
"pytest-cookies",
"pyyaml",
"mkdocs",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocs-include-markdown-plugin",
"pytest-cov",
"tox",
"click"
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"