-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
100 lines (90 loc) · 2.48 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
[tool.poetry]
name = "cookietemple"
version = "1.4.2" # <<COOKIETEMPLE_FORCE_BUMP>>
description = "A cookiecutter based project template creation tool supporting several domains and languages with advanced linting, syncing and standardized workflows to get your project kickstarted in no time."
authors = ["Philipp Ehmele <[email protected]>", "Lukas Heumos <[email protected]>"]
license = "Apache2.0"
readme = "README.rst"
homepage = "https://cookietemple.com"
repository = "https://github.com/cookiejar/cookietemple"
documentation = "https://cookietemple.readthedocs.io"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "cookietemple" },
]
[tool.poetry.dependencies]
python = ">=3.7.0,<4"
click = "^8.0.1"
rich = ">=10.2.2,<13.0.0"
cookiecutter = "2.1.1"
pygithub= "^1.54.1"
GitPython= "^3.1.17"
cffi= "^1.14.5"
cryptography= ">=3.4.7,<40.0.0"
requests= "^2.25.1"
packaging= ">=20.9,<22.0"
appdirs= "^1.4.4"
questionary= "^1.9.0"
pynacl= "^1.4.0"
"ruamel.yaml" = "^0.17.4"
PyNaCl = "1.5.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
coverage = {extras = ["toml"], version = "^6.5"}
safety = "2.3.5"
mypy = "^0.991"
typeguard = "^2.13.3"
xdoctest = {extras = ["colors"], version = "^1.0.0"}
sphinx = "^4.3.2"
sphinx-autobuild = "^2021.3.14"
pre-commit = "^2.21.0"
flake8 = "^5.0.4"
black = "^22.12.0"
flake8-bugbear = "^22.12.6"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.3.0"
pep8-naming = "^0.13.3"
reorder-python-imports = "^3.9.0"
pre-commit-hooks = "^4.4.0"
sphinx-click = "^3.1.0"
Pygments = "^2.12.0"
twine= "^4.0.2"
types-pkg-resources = "^0.1.3"
types-requests = "^2.28.11"
types-attrs = "^19.1.0"
pyupgrade = "^3.3.1"
furo = "^2022.4.7"
[tool.poetry.scripts]
cookietemple = "cookietemple.__main__:main"
[tool.black]
line-length = 120
[tool.mypy]
strict = false
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
ignore_missing_imports = true
exclude = "templates"
[tool.isort]
multi_line_output=3
include_trailing_comma=true
balanced_wrapping=true
line_length=120
skip="templates"
profile = "black"
[tool.coverage.paths]
source = ["cookietemple", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["cookietemple"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"