-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.43 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
[build-system]
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cookiecutter-poetry"
version = "0.0.1"
description = "Cookiecutter template for python with poetry and pytest"
authors = [
"Tim Hughes <thughes@thegoldfish.org>",
]
# Use identifier from https://spdx.org/licenses/
license = "MIT"
readme = "README.md"
homepage = "/~https://github.com/timhughes/cookiecutter-poetry"
repository = "/~https://github.com/timhughes/cookiecutter-poetry"
documentation = "/~https://github.com/timhughes/cookiecutter-poetry/blob/master/README.md"
classifiers = [
# https://pypi.org/classifiers/
"Environment :: Console",
"Development Status :: 1 - Planning",
]
[tool.poetry.urls]
# If you publish you package on PyPI, these will appear in the Project Links section.
"Bug Tracker" = "/~https://github.com/timhughes/cookiecutter-poetry/issues"
[tool.poetry.dependencies]
python = "^3.10.0"
cookiecutter = "*"
[tool.poetry.group.test.dependencies]
bandit = "*"
black = "*"
bump2version = "*"
flake8 = "*"
isort = "*"
jedi-language-server = "*"
mypy = "*"
pyinstaller = "*"
pylint = "*"
pytest = "*"
pytest-cookies = "*"
pytest-cov = "*"
reorder-python-imports = "*"
vulture = "*"
[tool.isort]
profile = "black"
[tool.black]
target-version = ['py311']
[tool.pytest.ini_options]
# Example
pythonpath = [
"src"
]
filterwarnings = [
"ignore::DeprecationWarning:moto.*:",
"ignore::DeprecationWarning:boto.*:",
]