-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 1.92 KB
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
59
60
61
62
63
64
65
66
67
[project]
name = "aiogqlc"
version = "5.4.0"
description = "aiohttp based GraphQL client"
authors = [{ name = "Jonathan Ehwald", email = "github@ehwald.info" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9,<4.0"
dependencies = ["aiohttp (>=3.6.0,<4.0.0)"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
homepage = "https://doctorjohn.github.io/aiogqlc/"
repository = "https://github.com/DoctorJohn/aiogqlc"
documentation = "https://doctorjohn.github.io/aiogqlc/"
[dependency-groups]
dev = [
"pytest>=8.3.3",
"pytest-cov>=6.1.1",
"pytest-asyncio>=1.0.0",
"pytest-aiohttp>=1.0.4",
"pytest-randomly>=3.16.0",
"strawberry-graphql>=0.270.5",
"mypy>=1.11.1",
"mkdocs>=1.5.2",
"mkdocs-material>=9.2.8",
"ruff>=0.11.12",
"prek>=0.2.29",
]
[build-system]
requires = ["uv_build>=0.9.24,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
[tool.ruff.lint]
extend-select = ["I", "UP"]
[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"