-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (67 loc) · 1.46 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
[tool.poetry]
name = "wegogym-api"
version = "0.2.0"
description = "WeGoGym's First API Server"
authors = [
"Hyungwook Choi <[email protected]>",
"Mingyu Kweon <[email protected]>",
]
maintainers = [
"Hyungwook Choi <[email protected]>",
"Mingyu Kweon <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/ColaboAI/WeGoGym-api"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.109.1"
uvicorn = {extras = ["standard"], version = "^0.23.2"}
asyncpg = "^0.28.0"
requests = "^2.31.0"
pyjwt = "^2.8.0"
boto3 = "^1.28.5"
python-multipart = "^0.0.7"
alembic = "^1.11.1"
ujson = "^5.7.0"
pydantic-settings = "^2.0.3"
greenlet = "^2.0.2"
firebase-admin = "^6.2.0"
sqlalchemy = "^2.0.20"
coredis = "^4.16.0"
langchain = "^0.1.0"
openai = "^0.28.0"
tiktoken = "^0.5.1"
[tool.poetry.group.local.dependencies]
pytz = "^2023.3"
black = "^24.3.0"
types-ujson = "*"
isort = "*"
mypy = "*"
mypy-extensions = "*"
autoflake = "*"
flake8 = "*"
pytest = "^7.4.2"
pytest-env = "^1.0.1"
pytest-asyncio = "^0.21.1"
httpx = "^0.25.0"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.4"
pre-commit = "^3.3.3"
[tool.black]
line-length = 120
target-version = ['py38']
exclude = '''
/(
\.git
| \.venv
)/
'''
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = 'C,R,I,import-error'
[tool.pytest.ini_options]
python_files = ["test_*.py"]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"