-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 782 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 782 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
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "async-dataloader"
version = "0.2.5"
description = "Asyncio Dataloader for GraphQL."
authors = ["syfun <sunyu418@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/syfun/async-dataloader"
packages = [
{ include = "dataloader" }
]
[tool.poetry.dependencies]
python = ">=3.7"
typing_extensions = { version = "^3.7.4", python = "< 3.8" }
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
pytest-asyncio = "^0.12.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = false
exclude = '''
(
/(
\.git
| \.venv
| \.mypy_cache
| __pycache__
)
)
'''
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3