61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "carbon-copy"
|
|
dynamic = ["version"]
|
|
description = 'An email-based multiplayer text adventure for the masses'
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = "MIT"
|
|
keywords = []
|
|
authors = [
|
|
{ name = "Micha Albert", email = "info@micha.zone" },
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
]
|
|
dependencies = [
|
|
"fastapi~=0.116.1",
|
|
"uvicorn[standard]~=0.35.0",
|
|
"jinja2~=3.1.6",
|
|
]
|
|
|
|
[project.urls]
|
|
Documentation = "https://github.com/Micha Albert/carbon-copy#readme"
|
|
Issues = "https://github.com/Micha Albert/carbon-copy/issues"
|
|
Source = "https://github.com/Micha Albert/carbon-copy"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/carbon_copy/__about__.py"
|
|
|
|
[tool.hatch.envs.types]
|
|
extra-dependencies = [
|
|
"mypy>=1.0.0",
|
|
]
|
|
[tool.hatch.envs.types.scripts]
|
|
check = "mypy --install-types --non-interactive {args:src/carbon_copy tests}"
|
|
|
|
[tool.coverage.run]
|
|
source_pkgs = ["carbon_copy", "tests"]
|
|
branch = true
|
|
parallel = true
|
|
omit = [
|
|
"src/carbon_copy/__about__.py",
|
|
]
|
|
|
|
[tool.coverage.paths]
|
|
carbon_copy = ["src/carbon_copy", "*/carbon-copy/src/carbon_copy"]
|
|
tests = ["tests", "*/carbon-copy/tests"]
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
"no cov",
|
|
"if __name__ == .__main__.:",
|
|
"if TYPE_CHECKING:",
|
|
]
|