forked from graphql-python/graphql-relay-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.48 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
[tool.poetry]
name = "graphql-relay"
version = "3.0.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"
]
packages = [
{ include = "graphql_relay", from = "src" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.6"
graphql-core = "^3.0"
typing-extensions = { version = "^3.6.2", python = "<3.8" }
[tool.poetry.dev-dependencies]
pytest = "^5.3"
pytest-asyncio = ">=0.10,<1"
pytest-cov = "^2.8"
pytest-describe = ">=0.12,<1"
pyyaml = "^5.2"
black = "19.10b0"
flake8 = "^3.7"
mypy = ">=0.761,<0.770"
codecov = "^2"
check-manifest = "0.40"
bump2version = ">=1.0,<2"
tox = "^3.14"
[tool.black]
target-version = ['py36', 'py37', 'py38']
[build-system]
requires = ["poetry>=1,<2"]
build-backend = "poetry.masonry.api"