-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.2 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.poetry]
name = "monitor"
version = "0.1.0"
description = "Web app that monitorizes and manages agents."
authors = ["Pablo González Rubio <[email protected]>"]
repository = "https://github.com/n0nuser/monitor"
license = "GPL-3.0-or-later"
packages = [
{ include = "monitor/"},
{ include = "monitor/**/*.py" },
]
[tool.poetry.dependencies]
Unipath = "^1.1"
asgiref = "^3.5.0"
autopep8 = "^1.6.0"
dj-database-url = "^0.5.0"
django = ">=4.0,<5.0"
django-environ = "^0.9.0"
django-import-export = "^2.7.1"
djangorestframework = "^3.13.1"
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.3"
pycodestyle = "^2.8.0"
python = ">=3.8,<4.0.0"
python-decouple = "^3.6"
pytz = "^2021.3"
requests = "^2.27.1"
sqlparse = "^0.4.2"
uvicorn = "^0.17.6"
whitenoise = "^6.0.0"
redis = "^4.3.3"
rq = "^1.10.1"
django-rq = "^2.5.1"
rq-scheduler = "^0.11.0"
django-crispy-forms = "^1.14.0"
django-minify-html = "^1.3.0"
django-extensions = "^3.1.5"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = {version = "^22.3.0", allow-prereleases = true}
pygraphviz = "^1.9"
[tool.black]
line-length = 119
[tool.flake8]
max-line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"