-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (27 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools >= 66.0"]
build-backend = "setuptools.build_meta"
[project]
name = "auto_fast_docs"
authors = [
{ name = "Timothé Jost-Mousseau", email = "[email protected]" },
]
maintainers = [
{ name = "Timothé Jost-Mousseau", email = "[email protected]" },
]
description = "Automatic code documentation generation tool (to generate markdown files compatible with mkdocstrings)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dynamic = ["version"]
dependencies = ["setuptools >= 66.0", "natsort", "mkdocs", "mkdocs-material", "mkdocstrings", "mkdocstrings-python"]
[project.urls]
homepage = "https://pypi.org/project/auto-fast-docs/"
repository = "https://github.com/JostTim/auto-doc/"
documentation = "https://josttim.github.io/auto_fast_docs/"
[project.scripts]
auto_fast_docs = "auto_fast_docs:console_mkds_make_docfiles"
[tool.setuptools.dynamic]
version = { attr = "auto_fast_docs.__version__" }
[tool.setuptools.package-data]
auto_fast_docs = ["mkdocs_template.yml"]