-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 756 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 756 Bytes
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
[tool.poetry]
name = "hexlet-code"
version = "0.2.6"
description = ""
authors = ["Konstantin Freidlin <freidlinks@ya.ru>"]
packages = [
{ include = "task_manager" }
]
repository = "https://github.com/mnogom/python-project-lvl4"
classifiers = [
"Topic :: Education",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.9"
Django = "^3.2.6"
python-dotenv = "^0.19.0"
dj-database-url = "^0.5.0"
gunicorn = "^20.1.0"
psycopg2 = "^2.9.1"
django-bootstrap4 = "^3.0.1"
PyYAML = "^5.4.1"
coverage = "^5.5"
django-filter = "^2.4.0"
rollbar = "^0.16.1"
whitenoise = "^5.3.0"
django-silk = "^4.2.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"