-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
40 lines (37 loc) · 1.13 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.6.1"
description = "Graphene Pydantic integration"
readme = "README.md"
repository = "https://github.com/graphql-python/graphene-pydantic"
authors = [
"Rami Chowdhury <[email protected]>",
"Dan Riggs <[email protected]>",
]
license = "Apache-2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = ["api", "graphql", "protocol", "rest", "relay", "graphene", "pydantic", "model"]
[tool.poetry.dependencies]
python = "^3.8"
graphene = ">=2.1.8"
pydantic = ">=2.0"
[tool.poetry.group.dev.dependencies]
pytest = "~6.2"
pytest-cov = "~2.7.1"
mypy = "^1.4.1"
black = "23.3"
pre-commit = "^2.9.2"
nox = "^2023.4.22"
[build-system]
requires = ["poetry>=1.5"]
build-backend = "poetry.masonry.api"