-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.1 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
[tool.poetry]
name = "django-faucet-pipeline"
version = "1.0.0"
description = "A Django integration for faucet-pipeline"
authors = ["Niels Grewe <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ngrewe/django-faucet-pipeline"
license = "MIT"
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3.7",
]
include = [
"README.md"
]
[[tool.poetry.source]]
name = "pypi_"
url = "https://pypi.org/simple/"
[tool.poetry.dependencies]
Django = ">=2.2"
python = "^3.7"
[tool.poetry.dev-dependencies]
django-stubs = "~=1.5.0"
mypy = "~=0.770"
pytest = ">=5.4.1"
pytest-cov = ">=2.8.1"
pytest-mock = ">=3.1.0"
pytest-django = ">=3.9.0"
tox = ">=3.1.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 88
target-version = ["py36", "py37", "py38"]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
| django_faucet_pipeline\/migrations
)/
)
'''