forked from graphql-python/graphene-pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.27 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
[tool.poetry]
name = "graphene_pydantic"
version = "0.3.0"
description = "Graphene Pydantic integration"
readme = "README.md"
repository = "https://github.com/graphql-python/graphene-pydantic"
authors = [
"Rami Chowdhury <[email protected]>"
]
license = "Apache-2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.6",
"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", "rest", "relay", "graphene", "pydantic", "model"]
[tool.poetry.dependencies]
python = "^3.7"
# To keep things simple, we only support newer versions of Graphene & Pydantic
graphene = ">=2.1.8"
pydantic = [
{ version = ">=1.0,<2.0", python = ">3.6,<3.10" },
{ version = ">=1.9,<2.0", python = "~3.10" }
]
[tool.poetry.dev-dependencies]
pytest = "~6.2"
pytest-cov = "~2.7.1"
tox = "~3.12.0" # sync with tox.ini
mypy = "0.901"
black = "21.12b0"
pre-commit = "~1.17.0"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"