schon/pyproject.toml
Egor fureunoir Gorbunov 12ccd04943 Update API version to 2.6.0 and reformat migration files
Updated the API version from 2.5.0 to 2.6.0 in the DRF settings for consistency across configurations. Reformatted migration files for better readability, ensuring consistency in code style and improving maintainability. These changes do not alter functionality but enhance clarity and documentation.
2025-05-06 19:19:49 +03:00

72 lines
No EOL
2.2 KiB
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[tool.poetry]
name = "eVibes"
version = "2.6.0"
description = "eVibes is an open-source eCommerce backend service built with Django. Its designed for flexibility, making it ideal for various use cases and learning Django skills. The project is easy to customize, allowing for straightforward editing and extension."
authors = ["fureunoir <contact@fureunoir.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
poetry-core = "2.1.3"
ruff = "0.11.8"
six = "1.17.0"
cryptography = "44.0.3"
redis = "6.0.0"
httpx = "0.28.1"
celery = { extras = ["flower"], version = "5.5.2", optional = true }
flower = "2.0.1"
pillow = "11.2.1"
south = "1.0.2"
pygraphviz = { version = "1.14", optional = true }
requests = "2.32.3"
gunicorn = "23.0.0"
psycopg2 = "2.9.10"
polib = "1.2.0"
openai = { version = "1.77.0", optional = true }
swapper = "1.4.0"
filetype = "1.2.0"
colorlog = "6.9.0"
pymdown-extensions = "10.15"
sentry-sdk = { extras = ["django"], version = "2.27.0", optional = true }
jupyter = { version = "1.1.1", optional = true }
elasticsearch-dsl = "8.18.0"
django = "5.2"
django-extensions = "4.1"
graphene-django = "3.2.3"
django-redis = "5.4.0"
django-modeltranslation = "0.19.14"
django-ratelimit = "4.1.0"
django-hosts = "6.0"
django-mptt = "0.17.0"
django-filter = "25.1"
django-constance = "4.3.2"
django-daisy = "1.0.23"
django-cacheops = "7.2"
django-mailbox = "4.10.1"
django-model-utils = "5.0.0"
django-widget-tweaks = "1.5.0"
django-cors-headers = "4.7.0"
django-celery-beat = { version = "2.8.0", optional = true }
django-json-widget = "2.0.1"
django-md-field = "0.1.0"
django-elasticsearch-dsl = "8.0"
django-elasticsearch-dsl-drf = "0.22.5"
djangorestframework = "3.16.0"
djangorestframework-simplejwt = { extras = ["crypto"], version = "5.5.0" }
djangorestframework-recursive = "0.1.2"
djangorestframework-camel-case = "1.4.2"
djangorestframework-xml = "2.0.0"
djangorestframework-yaml = "2.0.0"
drf-spectacular = { extras = ["sidecar"], version = "0.28.0" }
[tool.poetry.extras]
graph = ["pygraphviz"]
worker = ["celery", "django-celery-beat"]
sentry = ["sentry-sdk"]
AI = ["openai"]
jupyter = ["jupyter"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"