Initial commit

This commit is contained in:
Micha R. Albert 2025-07-23 10:54:51 -04:00
commit 9b92485232
Signed by: mra
SSH key fingerprint: SHA256:vjiZInsq3FRnDJk1YYWFhC/N62SAmVmY5H5wvViHhdg
6 changed files with 97 additions and 0 deletions

57
pyproject.toml Normal file
View file

@ -0,0 +1,57 @@
[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 = []
[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:",
]