-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 928 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
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = "Task manager Django app"
authors = ["Yuliya Dzhumanazarova <[email protected]>"]
readme = "README.md"
repository = "https://github.com/yudzhum/python-project-52"
packages = [{include = "task_manager"}]
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Django",
"Intended Audience :: End Users/Desktop",
"Natural Language :: Russian",
"Natural Language :: English"
]
[tool.poetry.dependencies]
python = "^3.8"
python-dotenv = "^1.0.0"
django = "^4.2.3"
dj-database-url = "^2.0.0"
psycopg2-binary = "^2.9.6"
gunicorn = "^20.1.0"
whitenoise = {extras = ["brotli"], version = "^6.5.0"}
django-bootstrap5 = "^23.3"
django-filter = "^23.2"
rollbar = "^0.16.3"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
coverage = "^7.2.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"