-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
120 lines (112 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[tool]
[tool.poetry]
name = "pca-scaffold"
version = "0.1.2"
description = "Scaffolding library for a python-clean-architecture package"
license = "BSD-3-Clause"
authors = [
"Łukasz Haze <github@lhaze.name>",
]
readme = "README.md"
repository = "https://github.com/pcah/pca-scaffold"
documentation = "https://pcah.github.io/pca-scaffold/"
keywords = [
'cookiecutter',
'package',
'pca',
'python-clean-architecture',
'template',
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
include = [
'{{cookiecutter.project_slug}}/**/*',
'cookiecutter.json',
'hooks/*'
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
cookiecutter = "^1.7.3"
urllib3 = "^1.26.9"
bump2version = {version = "^1.0.1", optional = true}
click = {version = "^8.1.3", optional = true}
mkdocs = {version="^1.3.0",optional=true}
mkdocs-include-markdown-plugin = {version = "^3.3.0", optional=true}
mkdocs-material = {version="^8.2.13",optional=true}
mkdocs-material-extensions = {version="^1.0.3",optional=true}
mkdocstrings = {version = "^0.18.1", optional = true}
mkdocstrings-sourcelink = {version = "^0.3.2", optional = true}
pdbpp = {version = "^0.10.3", optional = true}
pre-commit = {version = "^2.19.0", optional=true}
pytest = {version = "^7.1.2", optional=true}
pytest-cookies = {version = "^0.6.1", optional=true}
pytest-cov = {version="^3.0.0",optional=true}
pyyaml = {version="^6.0",optional=true}
tox = {version = "^3.25.0", optional=true}
[tool.poetry.extras]
dev = [
"bump2version",
"pip",
"pre-commit",
"toml",
]
test = [
"click",
"pdbpp",
"pre-commit",
"pytest",
"pytest-cookies",
"pytest-cov",
"pyyaml",
"tox",
]
docs = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-include-markdown-plugin",
"mkdocs-material",
"mkdocs-material-extension",
"mkdocstrings",
"mkdocstrings-sourcelink",
]
[tool.black]
line-length = 119
target-version = [
"py37",
"py38",
"py39",
"py310"
]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"