forked from mr-fatalyst/fastopenapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (62 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
[project]
name = "fastopenapi"
version = "0.4.0"
description = "FastOpenAPI is a library for generating and integrating OpenAPI schemas using Pydantic."
authors = [
{name = "Nikita Ryzhenkov", email = "[email protected]"}
]
license = {text = "MIT License"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic (>=2.10.6,<3.0.0)"
]
[project.optional-dependencies]
falcon = ["falcon (>=4.0.2,<5.0.0)"]
flask = ["flask (>=3.1.0,<4.0.0)"]
sanic = ["sanic (>=24.12.0,<25.0.0)"]
starlette = ["starlette (>=0.46.0,<0.47.0)"]
quart = ["quart (>=0.20.0, <0.21.0)"]
tornado = ["tornado (>=6.4.0, <6.5.0)"]
[project.urls]
Homepage = "https://github.com/mr-fatalyst/fastopenapi"
Repository = "https://github.com/mr-fatalyst/fastopenapi"
Documentation = "https://github.com/mr-fatalyst/fastopenapi/blob/master/docs/en/index.md"
Issues = "https://github.com/mr-fatalyst/fastopenapi/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
flake8 = "^7.1.2"
autoflake = "^2.3.1"
isort = "^6.0.1"
black = "^25.1.0"
pre-commit = "^4.1.0"
pyupgrade = "^3.19.1"
pytest = "^8.3.4"
anyio = "^4.8.0"
sanic-testing = "^24.6.0"
trio = "^0.29.0"
pytest-asyncio = "^0.25.3"
coverage = "^7.6.12"