-
Notifications
You must be signed in to change notification settings - Fork 107
/
pyproject.toml
64 lines (60 loc) · 1.66 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
[tool.black]
line-length = 88
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
'''
[tool.poetry]
name = "graphene-django-extras"
version = "1.0.0"
description = "This library add some extra funcionalities to graphene-django to facilitate the graphql use without Relay, allow paginations and filtering integration and add some extra directives"
readme = "README.md"
authors = [
"Ernesto Perez Amigo <[email protected]>",
"Martin Andersen <[email protected]>",
"Lukasz Dynowski <[email protected]>",
]
license = "MIT"
homepage = "https://github.com/eamigo86/graphene-django-extras"
repository = "https://github.com/eamigo86/graphene-django-extras"
documentation = "https://github.com/eamigo86/graphene-django-extras"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = ["api", "graphql", "protocol", "graphene", "django"]
[tool.poetry.dependencies]
python = "^3.7 || ^3.8 || ^3.9 || ^3.10"
django-filter = "^22.1"
djangorestframework = "^3"
python-dateutil = "^2.8.0"
graphene-django = "^3.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = "^22.10"
tox = "^3.7"
factory_boy = "^2.11"
pytest-django = "^3.4"
ipdb = "^0.13"
flake8 = "^3.6"
bandit = "^1.5"
pytest-cov = "^2.6"
pyflakes = "^2.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"