Initial commit
This commit is contained in:
commit
9b92485232
6 changed files with 97 additions and 0 deletions
57
pyproject.toml
Normal file
57
pyproject.toml
Normal 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:",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue