Files
conference-room-booking-system/backend/pyproject.toml
2025-10-02 21:44:14 -04:00

68 lines
1.7 KiB
TOML

[tool.poetry]
name = "backend"
version = "0.0.0"
description = "Backend"
authors = ["Cliff Hill <chill@darkhelm.org>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/xlorepdarkhelm/backend"
repository = "https://github.com/xlorepdarkhelm/backend"
documentation = "https://backend.readthedocs.io"
classifiers = [
"Development Status :: 5 - Production/Stable",
]
[tool.poetry.urls]
Changelog = "https://github.com/xlorepdarkhelm/backend/releases"
[tool.poetry.dependencies]
python = ">=3.13,<4.0"
click = ">=8.0.1"
fastapi = {extras = ["standard"], version = "^0.116.1"}
asyncpg = "^0.30.0"
sqlalchemy = "^2.0.43"
alembic = "^1.16.4"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
pyyaml = ">=6.0.1"
Pygments = ">=2.10.0"
black = ">=21.10b0"
coverage = {extras = ["toml"], version = ">=6.2"}
darglint = ">=1.8.1"
flake8 = ">=4.0.1"
flake8-bandit = ">=2.1.2"
flake8-bugbear = ">=21.9.2"
flake8-docstrings = ">=1.6.0"
flake8-rst-docstrings = ">=0.2.5"
furo = ">=2021.11.12"
isort = ">=5.10.1"
mypy = ">=0.930"
pep8-naming = ">=0.12.1"
pre-commit = ">=2.16.0"
pre-commit-hooks = ">=4.1.0"
pytest = ">=6.2.5"
pyupgrade = ">=2.29.1"
safety = ">=1.10.3"
sphinx = ">=4.3.2"
sphinx-autobuild = ">=2021.3.14"
sphinx-click = ">=3.0.2"
typeguard = ">=2.13.3"
xdoctest = {extras = ["colors"], version = ">=0.15.10"}
myst-parser = {version = ">=0.16.1"}
pytest-asyncio = "^1.1.0"
cryptography = ">=45.0.6" # For safety
httpx = "^0.28.1"
python-dotenv = "^1.1.1"
nox = "^2025.5.1"
nox-poetry = "^1.2.0"
asyncpg-stubs = "^0.30.2"
types-python-dateutil = "^2.9.0.20250822"
[tool.poetry.scripts]
backend = "backend.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"