-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 895 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
[tool.poetry]
name = "poetry"
version = "0.1.0"
description = "Poetry django"
authors = ["samikshakhadka <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django-environ = "^0.11.2"
psycopg2-binary = "^2.9.9"
psycopg = "^3.2.1"
djangorestframework = "^3.15.2"
markdown = "^3.6"
django-filter = "^24.3"
celery = "^5.4.0"
drf-yasg = "^1.21.7"
django-redis = "^5.4.0"
langchain = "^0.2.14"
langchain-community = "^0.2.12"
pandas = "^2.2.2"
django-cors-headers = "^4.4.0"
setuptools = "^72.2.0"
faker = "^27.4.0"
[tool.poetry.group.dev.dependencies]
django-stubs = "^5.0.4"
mypy = "^1.11.1"
isort = "^5.13.2"
black = "^24.8.0"
ipython = "^8.26.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "config.settings"