-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (52 loc) · 1.62 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
[tool.poetry]
name = "aiogqlc"
version = "5.3.0"
description = "aiohttp based GraphQL client"
authors = ["Jonathan Ehwald <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "aiogqlc"}]
homepage = "https://github.com/DoctorJohn/aiogqlc"
repository = "https://github.com/DoctorJohn/aiogqlc"
documentation = "https://github.com/DoctorJohn/aiogqlc"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.6.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.24.0"
pytest-aiohttp = "^1.0.4"
strawberry-graphql = "^0.239.2"
mypy = "^1.11.1"
mkdocs = "^1.5.2"
mkdocs-material = "^9.2.8"
ruff = "^0.6.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
plugins = "strawberry.ext.mypy_plugin"
check_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--cov=aiogqlc --cov-report term-missing --cov-report html"