-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
90 lines (83 loc) · 2 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
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
[tool.poetry]
name = "talk"
version = "1.0"
description = "Backend for talk.io"
authors = ["Anvesh Mishra <[email protected]>"]
maintainers = [
"Anvesh Mishra <[email protected]>",
]
repository = "https://github.com/Anv3sh/tak.io"
readme = "README.md"
keywords = ["chat","voip"]
packages = [{ include = "talk", from = "src/backend" }]
include = ["src/backend/talk/*", "src/backend/talk/**/*"]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
fastapi = "^0.103.1"
typer = "^0.9.0"
gunicorn = "^21.2.0"
rich = "^13.4.2"
docstring-parser = "^0.15"
psycopg2-binary = "^2.9.6"
qdrant-client = "^1.3.0"
python-multipart = "^0.0.6"
sqlmodel = "^0.0.8"
orjson = "3.9.3"
multiprocess = "^0.70.14"
cachetools = "^5.3.1"
types-cachetools = "^5.3.0.5"
appdirs = "^1.4.4"
certifi = "^2023.5.7"
alembic = "^1.11.2"
python-jose = "^3.3.0"
jose = "^1.0.0"
types-python-jose = "^3.3.4.8"
passlib = "^1.7.4"
types-passlib = "^1.7.7.13"
email-validator = "^2.0.0.post2"
types-psycopg2 = "^2.9.21.11"
pydantic_sqlalchemy = "^0.0.9"
uvicorn = "^0.24.0.post1"
beautifulsoup4 = "^4.12.2"
pypdf = "^3.11.0"
pysrt = "^1.1.2"
fake-useragent = "^1.1.3"
pyarrow = "^12.0.0"
tiktoken = "~0.4.0"
wikipedia = "^1.4.0"
websockets = "^10.3"
psycopg = "^3.1.9"
psycopg-binary = "^3.1.9"
fastavro = "^1.8.0"
bcrypt = "^4.0.1 "
cryptography = "^41.0.3"
types-jmespath = "^1.0.2.7"
python-dotenv = "^1.0.0"
pre-commit = "^3.5.0"
flake8 = "^6.1.0"
isort= "^5.12.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
ipykernel = "^6.21.2"
mypy = "^1.1.1"
ruff = "^0.0.254"
httpx = "*"
pytest = "^7.2.2"
types-requests = "^2.28.11"
requests = "^2.28.0"
pytest-cov = "^4.0.0"
types-appdirs = "^1.4.3.5"
types-pyyaml = "^6.0.12.8"
jinja2 = "^3.1.2 "
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = ["tests", "integration"]
console_output_style = "progress"
filterwarnings = ["ignore::DeprecationWarning"]
log_cli = true
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"