forked from acikyazilimagi/deprem-yardim-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.01 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
[tool.black]
line-length = 119
target-version = ['py38']
quiet = true
exclude='''
/(
\.git
| \.hg
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "trquake"
version = "0.1.0"
description = ""
authors = ["ahmetkotan <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.9"
Django = {version = "^4.1.6"}
psycopg2-binary = "^2.9.5"
celery = "^5.2.7"
tweepy = "^4.12.1"
djangorestframework = "^3.14.0"
django-environ = "^0.9.0"
redis = "^4.4.2"
django-cors-headers = "^3.13.0"
gunicorn = "^20.1.0"
snscrape = {git = "https://github.com/JustAnotherArchivist/snscrape.git"}
pandas = "^1.5.3"
unidecode = "^1.3.6"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = "^23.1.0"
watchdog = {version = "^2.2.1", extras = ["watchmedo"]}
pre-commit = "^3.0.4"
flake8 = "^6.0.0"
django-debug-toolbar = "^3.8.1"
django-extensions = "^3.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"