-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 764 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 764 Bytes
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
[tool.poetry]
name = "gql-subscriptions"
version = "0.0.3"
description = "A Python3.7+ port of Apollo Graphql Subscriptions."
authors = ["ysun <sunyu418@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/syfun/gql-subscriptions"
packages = [
{ include = "gql_subscriptions" }
]
[tool.poetry.dependencies]
python = ">=3.7"
typing_extensions = { version = "^3.7.4", python = "< 3.8" }
aioredis = { version = ">=1.3", optional = true }
[tool.poetry.dev-dependencies]
black = { version = "*", allow-prereleases = true }
isort = "*"
flake8 = "*"
pre-commit = "*"
pytest = "^5.4.1"
pytest-asyncio = "^0.11"
[tool.poetry.extras]
redis = ["aioredis"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"