carbon-copy/pyproject.toml
Micha Albert 251e7f0a7c
minor bug fixes
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
2025-07-30 11:40:41 -04:00

60 lines
1.4 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" },
{ name = "Peter Bierma", email = "zintensitydev@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"httpx~=0.28.1"
]
[project.urls]
Documentation = "https://git.mra.sh/mra/carbon-copy#readme"
Issues = "https://git.mra.sh/mra/carbon-copy/issues"
Source = "https://git.mra.sh/mra/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:",
]