-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.13 KB
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
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = "Simple task manager for multiple users. Provides tags and statuses for tasks"
classifiers = [
"Development Status :: 2 - Pre-AlphaClose",
"Framework :: Django :: 5.1",
"Programming Language :: Python :: 3.11",
"Natural Language :: Russian",
"Private :: Do Not Upload",
"Topic :: Office/Business :: Scheduling",
"Topic :: Office/Business :: Groupware"
]
authors = ["fiftinmen <fiftin.men@gmail.com>"]
readme = "README.md"
packages = [
{ include = "task_manager" },
]
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.0.6"
dj-database-url = "^2.2.0"
python-dotenv = "^1.0.1"
django-bootstrap5 = "^24.2"
whitenoise = "^6.7.0"
psycopg2-binary = "^2.9.9"
gunicorn = "^22.0.0"
django-extensions = "^3.2.1"
django-admin = "^2.0.2"
django-filter = "^24.2"
rollbar = "0.16.3"
django-shell-plus = "^1.1.7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
flake8 = "^7.1.0"
django-admin = "^2.0.2"
pytest-django = "^4.5.2"
ipython = "^8.5.0"
coverage = "^7.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"