-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 992 Bytes
/
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
[project]
name = "minichat"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "26awen", email = "[email protected]" }
]
dependencies = [
"openai>=1.14.0",
"rich>=13.7.1",
"pydantic>=2.7.1",
"sqlalchemy>=2.0.30",
"requests>=2.32.3",
"alembic>=1.13.2",
"init>=0.1.0",
"flask>=3.0.3",
"flask-restful>=0.3.10",
"click>=8.1.7",
"loguru>=0.7.2",
"gunicorn>=22.0.0",
"anthropic>=0.31.2",
"flask-alembic>=3.1.0",
"python-dotenv>=1.0.1",
"boto3>=1.34.152",
"python-fasthtml>=0.4.1",
"unicon>=24.7",
"httpx>=0.27.0",
"requests-oauthlib>=2.0.0",
"psycopg2>=2.9.9",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"basedpyright>=1.17.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/minichat"]