-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.16 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
[build-system]
requires = ["flit_core>=3.9.0"]
build-backend = "flit_core.buildapi"
[project]
name = "vilcos"
dynamic = ["version"]
description = "A FastAPI-based web framework"
authors = [{name = "Nidal Alhariri", email = "level09@gmail.com"}]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"jinja2>=3.1.2",
"sqlalchemy>=2.0.23",
"pydantic>=2.5.2",
"pydantic-settings>=2.1.0",
"pydantic-core>=2.14.5",
"python-dotenv>=1.0.0",
"starlette>=0.27.0",
"starlette-session>=0.4.3",
"aioredis>=2.0.1",
"greenlet>=3.0.1",
"asyncpg>=0.29.0",
"typer>=0.9.0",
"IPython>=8.17.2",
"redis>=5.0.1",
"argon2-cffi>=23.1.0",
"email-validator>=2.1.0", # Required for EmailStr validation
"websockets>=12.0", # Required for WebSocket support
]
[project.scripts]
vilcos = "vilcos.cli:main"
[project.urls]
Home = "https://github.com/level09/vilcos"
Source = "https://github.com/level09/vilcos"