copapy/pyproject.toml

53 lines
1.0 KiB
TOML
Raw Normal View History

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"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
2025-09-07 21:12:31 +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-09-07 21:12:31 +00:00
copapy = ["*.c", "*.o"]
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"]