-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (58 loc) · 1.22 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-graphene-toolbox"
version = "0.5.1"
description = ""
authors = ["junte <[email protected]>"]
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
packages = [
{ include = "jnt_django_graphene_toolbox", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
django = ">=4.1"
jnt_django_toolbox = "*"
graphene_django = "*"
djangorestframework = "*"
graphene-file-upload = "*"
django-filter = "*"
[tool.poetry.dev-dependencies]
mypy = "*"
polint = "*"
dennis = "*"
xenon = "*"
safety = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-freezegun = "*"
pytest-xdist = "*"
flake8 = "*"
flake8-pytest-style = "*"
flake8-class-attributes-order = "*"
wemake-python-styleguide = "*"
black = "*"
psycopg2-binary = "*"
[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"