35 lines
618 B
TOML
35 lines
618 B
TOML
[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",
|
|
"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/**/*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|