forked from ciscorn/starlette-graphene3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.19 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
[tool.poetry]
name = "starlette-graphene3"
version = "0.6.0"
description = "Use Graphene v3 on Starlette"
authors = ["Taku Fukada <[email protected]>"]
license = "MIT"
homepage = "https://github.com/ciscorn/starlette-graphene3"
repository = "https://github.com/ciscorn/starlette-graphene3"
keywords = ["graphene", "graphql", "asgi", "starlette"]
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
]
[tool.poetry.dependencies]
python = "^3.7"
graphene = ">=3.0b6"
graphql-core = ">=3.1,<3.3"
starlette = ">=0.14.1"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
flake8 = "^3.9.2"
graphene-file-upload = "^1.3.0"
mypy = "^0.910"
pre-commit = "^2.13.0"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
python-multipart = "^0.0.5"
uvicorn = {extras = ["standard"], version = "^0.14.0"}
requests = "^2.25.1"
pytest-asyncio = "^0.15.1"
[tool.isort]
include_trailing_comma = true
line_length=88
multi_line_output=3
known_third_party = ["graphene", "graphene_file_upload", "graphql", "pytest", "starlette"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"