-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (93 loc) · 2.64 KB
/
pyproject.toml
File metadata and controls
95 lines (93 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "Fastpost"
version = "0.1.0"
description = "A modern, scalable FastAPI application for managing users, posts, and votes, utilizing FastAPI, PostgreSQL, SQLModel, OAuth2, JWT for secure authentication, Docker for containerization, and GitHub Actions for CI/CD deployment to cloud platforms."
authors = [
{name = "COT-WORLD",email = "hardikchaudhary.aus@gmail.com"}
]
package-mode = false
license = {text = "MIT"}
requires-python = ">=3.12"
dependencies = [
"alembic (==1.16.4)",
"annotated-doc (==0.0.3)",
"annotated-types (==0.7.0)",
"anyio (==4.10.0)",
"authlib (==1.6.5)",
"bcrypt (==4.3.0)",
"bleach (==6.2.0)",
"certifi (==2025.8.3)",
"cffi (==2.0.0)",
"charset-normalizer (==3.4.3)",
"click (==8.2.1)",
"colorama (==0.4.6)",
"cryptography (==46.0.5)",
"dnspython (==2.7.0)",
"dparse (==0.6.4)",
"email-validator (==2.2.0)",
"fastapi (==0.120.2)",
"fastapi-cli (==0.0.8)",
"filelock (==3.20.3)",
"greenlet (==3.2.4)",
"gunicorn (==23.0.0)",
"h11 (==0.16.0)",
"httpcore (==1.0.9)",
"httptools (==0.6.4)",
"httpx (==0.28.1)",
"idna (==3.10)",
"iniconfig (==2.1.0)",
"itsdangerous (==2.2.0)",
"jinja2 (==3.1.6)",
"joblib (==1.5.1)",
"mako (==1.3.10)",
"markdown-it-py (==4.0.0)",
"markupsafe (==3.0.2)",
"marshmallow (==4.2.1)",
"mdurl (==0.1.2)",
"nltk (==3.9.1)",
"orjson (==3.11.2)",
"packaging (==25.0)",
"passlib (==1.7.4)",
"pluggy (==1.6.0)",
"psutil (==6.1.1)",
"psycopg2 (==2.9.10)",
"pycparser (==2.22)",
"pydantic (==2.9.2)",
"pydantic-extra-types (==2.10.5)",
"pydantic-settings (==2.10.1)",
"pydantic-core (==2.23.4)",
"pygments (==2.19.2)",
"pyjwt (==2.10.1)",
"pytest (==8.4.1)",
"python-dotenv (==1.1.1)",
"python-multipart (==0.0.22)",
"pyyaml (==6.0.2)",
"regex (==2025.7.34)",
"requests (==2.32.5)",
"rich (==14.1.0)",
"rich-toolkit (==0.15.0)",
"ruamel-yaml (==0.18.15)",
"ruamel-yaml-clib (==0.2.12)",
"setuptools (==80.9.0)",
"shellingham (==1.5.4)",
"sniffio (==1.3.1)",
"sqlalchemy (==2.0.43)",
"sqlmodel (==0.0.24)",
"starlette (==0.49.1)",
"tenacity (==9.1.2)",
"tomlkit (==0.13.3)",
"tqdm (==4.67.1)",
"typer (==0.16.1)",
"typing-inspection (==0.4.1)",
"typing-extensions (==4.15.0)",
"ujson (==5.11.0)",
"urllib3 (==2.6.3)",
"uvicorn (==0.35.0)",
"watchfiles (==1.1.0)",
"webencodings (==0.5.1)",
"websockets (==15.0.1)",
"wheel (==0.46.3)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"