-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.21 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "fastapi-framework"
authors = [
{name = "Tert0"}
]
readme = "README.md"
classifiers = [ "License :: OSI Approved :: MIT License", "Framework :: AsyncIO", "Intended Audience :: Developers", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Database", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed"]
requires-python = ">=3.6"
dynamic = ["version", "description"]
dependencies = [
"fastapi==0.115.6",
"aioredis==1.3.1",
"passlib==1.7.4",
"PyJWT==2.10.1",
"python-dotenv==1.0.1",
"SQLAlchemy==2.0.37",
"pyyaml==6.0.2",
"toml==0.10.2",
"pydantic==2.10.5",
"greenlet==3.1.1"
]
[project.urls]
Documentation = "https://tert0.github.io/fastapi-framework"
Source = "https://github.com/Tert0/fastapi-framework"
[project.optional-dependencies]
test = [
"httpx",
"coverage",
"aiosqlite"
]
doc = [
"mkdocs-material"
]
lint = [
"black",
"flake8",
"mypy",
"types-PyYAML",
"types-toml"
]