Инициализация репозитория

This commit is contained in:
2026-07-10 11:00:02 +03:00
commit 3ae58015c7
7 changed files with 319 additions and 0 deletions

51
pyproject.toml Normal file
View File

@@ -0,0 +1,51 @@
[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"]
# ---- НАСТРОЙКА ДЛЯ ПУБЛИКАЦИИ В 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 = [
"pip-licenses",
]