-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 923 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
[tool.poetry]
name = "chai-chat-demo-server"
version = "0.0.0"
description = "Chai Chat Demo Server"
authors = ["Daniel Newman <[email protected]>"]
license = ""
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
alembic = "^1.11.0"
black = "^24.10.0"
boto3 = "^1.34.48"
fastapi = "^0.110.0"
mangum = "^0.17.0"
pytest = "^7.3.1"
pytest-env = "^0.8.1"
pytest-cov = "^4.1.0"
psycopg2-binary = "^2.9.10"
python-dotenv = "^1.0.1"
pyjwt = "^2.10.1"
requests = "^2.31.0"
sqlalchemy = "^2.0.36"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
cryptography = "^44.0.0"
pydantic-settings = "^2.6.1"
httpx = "^0.28.1"
[tool.pyright]
pythonVersion = "3.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
env = [
"env=Test"
]
addopts = "--cov --cov-report term-missing"
[tool.coverage.run]
omit = ["config/*"]