2025-05-25 21:23:02 +00:00
|
|
|
[project]
|
|
|
|
|
name = "copapy"
|
2025-09-07 21:12:31 +00:00
|
|
|
version = "0.0.0"
|
2025-05-25 21:23:02 +00:00
|
|
|
authors = [
|
|
|
|
|
{ name="Nicolas Kruse", email="nicolas.kruse@nonan.net" },
|
|
|
|
|
]
|
|
|
|
|
description = "Copy-Patch Compiler"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
2025-09-30 21:11:14 +00:00
|
|
|
license = "GPL-3.0-only"
|
2025-05-25 21:23:02 +00:00
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
2025-10-08 21:01:26 +00:00
|
|
|
"pelfy>=1.0.3"
|
2025-05-25 21:23:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/nonannet/copapy"
|
|
|
|
|
Issues = "https://github.com/nonannet/copapy/issues"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
2025-10-04 20:57:45 +00:00
|
|
|
copapy = ["obj/*.o", "py.typed"]
|
2025-10-03 20:49:07 +00:00
|
|
|
|
2025-05-25 21:23:02 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"flake8",
|
|
|
|
|
"mypy",
|
2025-09-07 21:12:31 +00:00
|
|
|
"pytest"
|
2025-05-25 21:23:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
files = ["src"]
|
|
|
|
|
strict = true
|
|
|
|
|
warn_return_any = true
|
|
|
|
|
warn_unused_configs = true
|
|
|
|
|
check_untyped_defs = true
|
|
|
|
|
no_implicit_optional = true
|
|
|
|
|
show_error_codes = true
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
minversion = "6.0"
|
|
|
|
|
addopts = "-ra -q"
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|