-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
pyproject.toml
56 lines (52 loc) · 1.44 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
[tool.poetry]
name = "graphql-core"
version = "3.1.2"
description = """
GraphQL-core is a Python port of GraphQL.js,
the JavaScript reference implementation for GraphQL."""
license = "MIT"
authors = [
"Christoph Zwerschke <cito@online.de>"
]
readme = "README.md"
homepage = "https://github.com/graphql-python/graphql-core"
repository = "https://github.com/graphql-python/graphql-core"
documentation = "https://graphql-core-3.readthedocs.io/"
keywords = ["graphql"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
packages = [
{ include = "graphql", from = "src" },
{ include = "tests", format = "sdist" },
{ include = "docs", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^5.4"
pytest-asyncio = ">=0.14,<1"
pytest-benchmark = "^3.2"
pytest-cov = "^2.10"
pytest-describe = "^1.0"
pytest-timeout = "^1.4"
black = "19.10b0"
flake8 = "^3.8"
mypy = "0.782"
codecov = "^2"
sphinx = "^2.4"
sphinx_rtd_theme = ">=0.4,<1"
check-manifest = "0.40"
bump2version = ">=1.0,<2"
tox = "^3.16"
[tool.black]
target-version = ['py36', 'py37', 'py38']
[build-system]
requires = ["poetry>=1,<2"]
build-backend = "poetry.masonry.api"