-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 751 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 751 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
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = "Task manager - web service allows to define a tasks"
authors = ["prStudentka <bk_nvk@mail.ru>"]
readme = "README.md"
packages = [{include = "task_manager"}]
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Django",
]
repository = "https://github.com/prStudentka/python-project-52"
[tool.poetry.dependencies]
python = "^3.10"
django = "4.1.3"
django-bootstrap5 = "^23.3"
python-dotenv = "^1.0.0"
psycopg2-binary = "^2.9.9"
django-filter = "^23.5"
rollbar = "0.16.3"
dj-database-url = "^2.1.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
coverage = "^7.4.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"