-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.21 KB
/
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
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "NewsPaper"
version = "0.0.1"
description = "Micro blog application on Python/Django."
license = "Free GNU License"
authors = ["Hrayr <stepanyan@hrayr.am>"]
maintainers = ["Hrayr <stepanyan@hrayr.am>"]
readme = "README.md"
homepage = "https://bool.am"
repository = "https://github.com/hrayr-s/NewsPaper"
documentation = "https://github.com/hrayr-s/NewsPaper/wiki"
keywords = ["blog", "news", "python", "django", ]
[tool.poetry.dependencies]
python = "^3.11"
wheel = "^0.42.0"
certifi = "^2023.11.17"
poetry = "1.7.1"
django = "^4.2"
django-tinymce = "^3.6.1"
django-admin-rangefilter = "^0.12.0"
django-environ = "^0.11.2" # django configuration variables easy management
django-configurations = "^2.4.1"
django-redis = "5.4.0"
pillow = "^10.2.0"
gunicorn = { version = "^21.2.0", optional = true }
psycopg2 = { version = "^2.9.9", optional = true }
django-mptt = "^0.16.0"
django-otp = "^1.3.0"
qrcode = "^7.4.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "^4.3.0"
# e.g `poetry install --with dev -E postgres
[tool.poetry.extras]
live = ["gunicorn"]
postgres = ["psycopg2"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"