2025-03-28 12:30:08 +00:00
|
|
|
[project]
|
|
|
|
name = "pyladoc"
|
2025-06-02 17:56:21 +00:00
|
|
|
version = "1.2.3"
|
2025-03-28 12:30:08 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Nicolas Kruse", email="nicolas.kruse@nonan.net" },
|
|
|
|
]
|
|
|
|
description = "Package for generating HTML and PDF/latex from python code"
|
|
|
|
readme = "README.md"
|
2025-05-19 09:17:57 +00:00
|
|
|
requires-python = ">=3.10"
|
2025-05-13 08:03:09 +00:00
|
|
|
license = "MIT"
|
2025-03-28 12:30:08 +00:00
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
dependencies = [
|
2025-04-13 22:50:01 +00:00
|
|
|
"markdown>=3.3.0"
|
2025-03-28 12:30:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"pytest", "flake8", "mypy",
|
2025-05-13 08:13:27 +00:00
|
|
|
"lxml", "types-lxml", "types-Markdown", "pandas-stubs",
|
2025-03-28 12:30:08 +00:00
|
|
|
"requests",
|
|
|
|
"matplotlib>=3.1.1",
|
|
|
|
"pandas>=2.0.0", "Jinja2",
|
|
|
|
]
|
2025-06-06 17:21:38 +00:00
|
|
|
doc_build = [
|
|
|
|
"sphinx",
|
|
|
|
"pydata_sphinx_theme",
|
|
|
|
"sphinx-autodoc-typehints",
|
|
|
|
"myst-parser"
|
|
|
|
]
|
2025-03-28 12:30:08 +00:00
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/Nonannet/pyladoc"
|
|
|
|
Repository = "https://github.com/Nonannet/pyladoc"
|
|
|
|
Issues = "https://github.com/Nonannet/pyladoc/issues"
|
2025-05-26 07:45:58 +00:00
|
|
|
documentation = "https://nonannet.github.io/pyladoc/"
|
2025-03-28 12:30:08 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
2025-07-06 15:16:45 +00:00
|
|
|
pyladoc = ["templates/*", "py.typed"]
|
2025-03-28 12:30:08 +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"]
|
2025-06-02 17:56:21 +00:00
|
|
|
pythonpath = ["src"]
|