-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 740 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (24 loc) · 740 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autodox"
version = "0.1.17"
authors = [
{ name="k98kurz", email="k98kurz@gmail.com" },
]
description = "Tool for generating documentation automatically from code annotations, types, and docstrings."
readme = "readme.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Topic :: Documentation"
]
[project.urls]
"Homepage" = "https://github.com/k98kurz/autodox"
"Bug Tracker" = "https://github.com/k98kurz/autodox/issues"
[project.scripts]
autodox = "autodox.functions:main_cli"