-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.14 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "support-system"
version = "1.0.0"
description = "Modern support system with LLMs and vector databases"
authors = [{name = "Support Team", email = "support@company.com"}]
requires-python = ">=3.9"
dependencies = [
"fastapi==0.104.1",
"uvicorn[standard]==0.24.0",
"pydantic==2.5.0",
"pydantic-settings==2.1.0",
"sqlalchemy==2.0.23",
"psycopg2-binary==2.9.9",
"pgvector==0.2.4",
"alembic==1.13.1",
"python-multipart==0.0.6",
"python-jose[cryptography]==3.3.0",
"passlib[bcrypt]==1.7.4",
"httpx==0.25.2",
"python-dotenv==1.0.0",
"structlog==23.2.0",
"numpy==1.25.2",
"sentence-transformers==2.2.2",
]
[project.optional-dependencies]
dev = [
"pytest==7.4.3",
"pytest-asyncio==0.21.1",
"black==23.11.0",
"isort==5.12.0",
"flake8==6.1.0",
"mypy==1.7.1",
]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true