pelfy/pyproject.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

2025-02-22 18:53:39 +00:00
[project]
name = "pelfy"
2025-05-22 14:47:14 +00:00
version = "1.0.2"
2025-02-22 18:53:39 +00:00
authors = [
{ name="Nicolas Kruse", email="nicolas.kruse@nonan.net" },
]
description = "Parser for ELF files written in python"
readme = "README.md"
requires-python = ">=3.9"
2025-05-22 14:47:14 +00:00
license = "MIT"
2025-02-22 18:53:39 +00:00
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Nonannet/pelfy"
Issues = "https://github.com/Nonannet/pelfy/issues"
2025-05-22 14:47:14 +00:00
documentation = "https://nonannet.github.io/pelfy/"
2025-02-22 18:53:39 +00:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
2025-05-22 14:47:14 +00:00
[project.optional-dependencies]
dev = [
"pytest", "flake8", "mypy"
]
2025-07-28 13:17:01 +00:00
doc_build = [
"sphinx",
"pydata_sphinx_theme",
"sphinx-autodoc-typehints",
"myst-parser"
]
2025-05-22 14:47:14 +00:00
[tool.mypy]
files = ["src", "tests"]
strict = true
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
2025-02-22 18:53:39 +00:00
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
pythonpath = ["src"]