forked from graphql-python/graphql-relay-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (66 loc) · 2.21 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
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "graphql-relay"
version = "3.2.0"
description = """
Relay library for graphql-core"""
license="MIT"
authors = [
"Syrus Akbary <[email protected]>",
"Christoph Zwerschke <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/graphql-python/graphql-relay-py"
repository = "https://github.com/graphql-python/graphql-relay-py"
documentation = "https://github.com/graphql-python/graphql-relay-py"
keywords = ["graphql", "relay", "api"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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"
]
packages = [
{ include = "graphql_relay", from = "src" },
{ include = "tests", format = "sdist" },
{ include = '.bumpversion.cfg', format = "sdist" },
{ include = '.coveragerc', format = "sdist" },
{ include = '.editorconfig', format = "sdist" },
{ include = '.flake8', format = "sdist" },
{ include = '.mypy.ini', format = "sdist" },
{ include = 'poetry.lock', format = "sdist" },
{ include = 'tox.ini', format = "sdist" },
{ include = 'setup.cfg', format = "sdist" },
{ include = 'CODEOWNERS', format = "sdist" },
{ include = 'MANIFEST.in', format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.6"
typing-extensions = { version = "^4.1", python = "<3.8" }
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-asyncio = [
{version=">=0.18,<1", python = ">=3.7" },
{version=">=0.16,<0.17", python = "<3.7" },
]
pytest-cov = "^3.0"
pytest-describe = "^2.0"
black = [
{version = "22.3.0", python = ">=3.6.2"},
{version = "20.8b1", python = "<3.6.2"}
]
flake8 = "^4.0"
mypy = "0.942"
check-manifest = ">=0.48,<1"
bump2version = ">=1.0,<2"
tox = "^3.24"
[tool.black]
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
[build-system]
requires = ["poetry_core>=1,<2", "setuptools>=59,<70"]
build-backend = "poetry.core.masonry.api"