-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
90 lines (84 loc) · 2.26 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
[tool.poetry]
name = "ariadne-extended"
version = "0.1.12"
description = "Ariadne contrib library for working with Django and GraphQL"
authors = ["Patrick Forringer <pforringer@patriotrc.com>", "Buddy Lindsey <blindsey@patriotrc.com"]
license = "MIT"
readme = "README.md"
keywords = ["ariadne-extended"]
repository = "https://github.com/patriotresearch/ariadne-extended"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
'Framework :: Django',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/patriotresearch/ariadne-extended/issues"
"Source" = "https://github.com/patriotresearch/ariadne-extended"
"Documentation" = "https://ariadne-extended.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.6"
ariadne = "^0.11.0"
pyhumps = "^1.3.1"
django = {version = ">=2.2, <3.1"}
djangorestframework = "^3.7"
django-filter = {version = "^2.2.0", optional = true}
django-waffle = {version = "^0.20.0", optional = true}
[tool.poetry.dev-dependencies]
flake8 = "^3.7.8"
tox = "^3.14.0"
coverage = "^4.5.4"
Sphinx = "^1.8.5"
django = "^2.2"
model-bakery = "^1.1.0"
djangorestframework = "^3.11.0"
django-filter = "^2.2.0"
pytest = "^5.2"
pytest-watch = "^4.2.0"
pytest-runner = "^5.1"
dj-database-url = "^0.5.0"
psycopg2-binary = "^2.8.5"
bump2version = "^1.0.0"
black = "^19.10b0"
pytest-django = "^3.9.0"
pytest-mock = "^3.1.0"
glom = "^19.10.0"
pytest-cov = "^2.8.1"
django-waffle = "^0.20.0"
[tool.black]
target-version = ['py38']
line-length = 99
exclude = '''
(
/(
| \.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
)
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
skip = "migrations"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"