-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1015 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
49
[tool.poetry]
name = "mentormingle"
version = "0.1.0"
description = "An AI Agent for interview prep"
authors = ["Aymane Hachcham & Sebti Youssef"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "3.8.6"
aiosignal = "1.3.1"
async-timeout = "4.0.3"
attrs = "23.1.0"
certifi = "2023.7.22"
charset-normalizer = "3.3.0"
frozenlist = "1.4.0"
idna = "3.4"
load-dotenv = "0.1.0"
multidict = "6.0.4"
openai = "0.28.1"
python-dotenv = "1.0.0"
requests = "2.31.0"
tqdm = "4.66.1"
urllib3 = "2.0.6"
yarl = "1.9.2"
pydantic = "^2.4.2"
toml = "^0.10.2"
pydantic-settings = "^2.0.3"
redis = "^5.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-mock = "^3.12.0"
flake8 = "^6.1.0"
pylint = "^3.0.1"
black = "^23.10.0"
fakeredis = "^2.20.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocstrings-python = "^1.7.3"
markdown-include = "^0.8.1"
mkdocs-material = "^9.4.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"