-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (48 loc) · 1.37 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
[tool.poetry]
name = "graphene-protector"
version = "0.12.1"
description = "Protects graphene, graphql or strawberry against malicious queries"
authors = ["alex <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/devkral/graphene-protector"
keywords=[
"graphql",
"strawberry",
"extension"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
graphql-core = ">=3"
graphene = { version = ">=3", optional=true }
graphene-django = { version = ">=3", optional=true }
strawberry-graphql = { version = ">=0.92", optional=true }
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
tox = "*"
[tool.poetry.group.dev.dependencies]
tox = "*"
graphene = { version = ">=3"}
graphene-django = { version = ">=3" }
django = [
{version = "<5.0", python = "<3.10"},
{version = ">=5.0", python = ">=3.10"}
]
strawberry-graphql = { version = ">=0.200" }
[tool.poetry.extras]
optional = ["graphene", "graphene-django", "strawberry-graphql"]
[tool.black]
line-length = 79
[tool.isort]
wrap_length = 79
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"