-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.19 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
[project]
name = "aiohttp-openapi-ermelo"
description = "Builds openapi schemas for aiohttp apps."
readme = "README.md"
requires-python = ">=3.11" # 3.10 not supported due to lack of typing.Unpack
dependencies = ["aiohttp", "pydantic", "openapi-pydantic"]
dynamic = ["version"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Framework :: AsyncIO",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
HomePage = "https://github.com/garyvdm/aiohttp-openapi-ermelo"
[project.optional-dependencies]
test = [
"pytest",
"pytest-aiohttp",
"pytest-playwright-asyncio",
"mypy",
"types-PyYAML",
"pytest-cov",
]
yaml = ["pyyaml"]
[build-system]
requires = ["setuptools>=80", "setuptools-scm[simple]>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
aiohttp_openapi = ["contrib-ui/swagger-ui/*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = ["playwright", "no_yaml"]
asyncio_default_test_loop_scope = "session"
[tool.ruff]
line-length = 120
target-version = "py311"
lint.extend-select = [
"I", # isort
"UP", # pyupgrade
]