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

9
LICENSE.txt Normal file
View file

@ -0,0 +1,9 @@
MIT License
Copyright (c) 2025-present Micha Albert <info@micha.zone>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

21
README.md Normal file
View file

@ -0,0 +1,21 @@
# carbon-copy
[![PyPI - Version](https://img.shields.io/pypi/v/carbon-copy.svg)](https://pypi.org/project/carbon-copy)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/carbon-copy.svg)](https://pypi.org/project/carbon-copy)
-----
## Table of Contents
- [Installation](#installation)
- [License](#license)
## Installation
```console
pip install carbon-copy
```
## License
`carbon-copy` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

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:",
]

View file

@ -0,0 +1,4 @@
# SPDX-FileCopyrightText: 2025-present Micha Albert <info@micha.zone>
#
# SPDX-License-Identifier: MIT
__version__ = "0.0.1"

View file

@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: 2025-present Micha Albert <info@micha.zone>
#
# SPDX-License-Identifier: MIT

3
tests/__init__.py Normal file
View file

@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: 2025-present Micha Albert <info@micha.zone>
#
# SPDX-License-Identifier: MIT