24 lines
454 B
TOML
24 lines
454 B
TOML
[project]
|
|
name = "hub-django-port"
|
|
version = "0.1.0"
|
|
description = "Django rewrite of the hospitality operations hub"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"Django>=5.1,<6",
|
|
"django-cors-headers>=4.4",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["config", "apps"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "."
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|