-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.71 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
69
70
71
72
73
74
75
76
[tool.poetry]
name = "cookiecutter-pypackage"
version = "0.1.0"
description = "A python cookiecutter application to create a new python project that uses poetry to manage its dependencies."
authors = ["Xavier Duran <[email protected]>"]
repository = "https://github.com/xdurana/cookiecutter-pypackage"
documentation = "https://xdurana.github.io/cookiecutter-pypackage/"
readme = "README.md"
keywords = ['cookiecutter', 'template', 'poetry']
packages = [
{include = "cookiecutter_poetry"}
]
include = [
'{{cookiecutter.project_name}}/**/*',
'cookiecutter.json',
'hooks/*'
]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
cookiecutter = "^2.1.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
isort = "^5.10.1"
black = "^22.6.0"
pytest-cookies = "^0.6.1"
tox = "^3.25.1"
mkdocs = "^1.3.0"
mkdocs-material = "^8.3.8"
mypy = "^0.961"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
target-version = ['py39']
fast = true
exclude = '''
(
/( # exclude a few common directories in the
\.git # root of the project
| \.pytest_cache
| python-venv
| \.venv
| build
| dist
| {{cookiecutter.project_name}}
| \.tox
))
'''
[tool.isort]
profile = "black"
skip = ["{{cookiecutter.project_name}}",".venv"]
[tool.poetry.scripts]
ccp = 'cookiecutter_poetry.cli:main'
[tool.mypy]
disallow_untyped_defs = "True"
disallow_any_unimported = "True"
no_implicit_optional = "True"
check_untyped_defs = "True"
warn_return_any = "True"
warn_unused_ignores = "True"
show_error_codes = "True"
exclude = [
'\.venv',
'{{cookiecutter.project_name}}',
'tests'
]