Files
drf-rack/pyproject.toml

54 lines
1.2 KiB
TOML

[project]
name = "drf-rack"
version = "0.1.0"
description = "DRF Rack library for xeaf.net"
readme = "README.md"
requires-python = ">=3.14"
authors = [{name = "Nick V. Anokhin", email = "n.anokhin@xeaf.net"}]
classifiers = [
"License :: OSI Approved :: MIT License",
]
dependencies = [
"boto3",
"concurrent-log-handler",
"django",
"django-cors-headers",
"django-environ",
"django-split-settings",
"django-storages",
"djangorestframework",
"djangorestframework-camel-case",
"djangorestframework-dataclasses",
"djangorestframework-stubs",
"gunicorn",
"pillow",
"psycopg[binary]",
"redis",
"split_settings",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["net"]
exclude = ["net/**/tests"]
# ---- НАСТРОЙКА ДЛЯ ПУБЛИКАЦИИ В GITEA ----
[[tool.uv.index]]
name = "xeaf-public"
url = "https://gitea.xeaf.net/api/packages/xeaf-public/pypi/simple/"
publish-url = "https://gitea.xeaf.net/api/packages/xeaf-public/pypi/"
explicit = true
[tool.uv.sources]
drf-rack = { index = "xeaf-public" }
[dependency-groups]
dev = [
"coverage",
"pip-licenses",
]