-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 879 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
37
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = ""
authors = ["Igor Gakhov <gakhov_igor@rambler.ru>"]
readme = "README.md"
packages = [
{ include = "task_manager" },
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Framework :: Django :: 4.1",
"Framework :: Flake8",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
]
repository = "https://github.com/IgorGakhov/python-project-52"
[tool.poetry.dependencies]
python = "^3.8"
python-dotenv = "^0.21.0"
Django = "^4.1.3"
django-bootstrap4 = "^22.2"
django-filter = "^22.1"
dj-database-url = "0.5.0"
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.5"
whitenoise = "^6.2.0"
rollbar = "^0.16.3"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
coverage = "^6.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"