Initial checkin

This commit is contained in:
2026-06-09 16:06:44 -07:00
commit 82ece0de10
31 changed files with 6348 additions and 0 deletions

35
pyproject.toml Normal file
View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pirats"
version = "0.1.0"
description = "Rats with Gats Remote Play web application"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"fastapi",
"sqlmodel",
"uvicorn",
"jinja2",
"python-multipart",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[project.scripts]
pirats = "pirats.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pirats = ["static/**/*", "templates/**/*.html", "templates/*.html"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]