forked from graphql-python/graphene-pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.18 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
[tool.poetry]
name = "graphene_pydantic"
version = "0.2.0"
description = "Graphene Pydantic integration"
readme = "README.md"
repository = "https://github.com/upsidetravel/graphene-pydantic"
authors = [
"Rami Chowdhury <rami@upside.com>"
]
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 :: Implementation :: PyPy",
]
keywords = ["api", "graphql", "protocol", "rest", "relay", "graphene", "pydantic", "model"]
[tool.poetry.dependencies]
python = "^3.6"
# To keep things simple, we only support newer versions of Graphene & Pydantic
graphene = ">=3.0b5"
pydantic = ">=1.0,<1.7"
[tool.poetry.dev-dependencies]
pytest = "~4.6.4"
pytest-cov = "~2.7.1"
tox = "~3.12.0" # sync with tox.ini
mypy = "0.720"
black = "20.8b1"
pre-commit = "~1.17.0"
tox-gh-actions = "^1.3.0"
# https://github.com/python-poetry/poetry/issues/2386
dataclasses = { version = "^0.6", python = "^3.6.1, <3.7" }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"