-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (57 loc) · 1.25 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
[tool.poetry]
name = "jnt-django-toolbox"
version = "0.9.13"
description = ""
authors = ["junte <[email protected]>"]
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules'
]
packages = [
{ include = "jnt_django_toolbox", from ="src" }
]
[tool.poetry.dependencies]
python = "^3.10"
django = ">=4.1"
dateparser = "*"
jaeger-client = {version = "*", optional = true}
[tool.poetry.dev-dependencies]
mypy = "*"
polint = "*"
dennis = "*"
xenon = "*"
safety = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-xdist = "*"
flake8 = "*"
flake8-pytest-style = "*"
pytest-freezegun = "*"
wemake-python-styleguide = "*"
black = "*"
flake8-class-attributes-order = "*"
[tool.poetry.extras]
jaeger = ["jaeger-client"]
[tool.black]
line-length = 79
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
| \.git # root of the project
| \.mypy_cache
| \.venv
| \.pytest_cache
| .*\/migrations
)/
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"