-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.23 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "docs2static"
version = "0.6"
description = "Fetch collaborative documents from a Docs instance and generate static sites with Zensical"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.14"
authors = [
{ name = "CoopCodeCommun", email = "contact@tibillet.re" },
{ name = "Jonas TURBEAUX", email = "jturbeaux@pm.me" },
]
keywords = ["documentation", "static-site", "zensical", "docs", "markdown"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dependencies = [
"colorlog>=6.10.1",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"requests-cache>=1.2.1",
"zensical>=0.0.17",
]
[project.scripts]
docs2static = "docs2static.main:main"
[project.urls]
Homepage = "https://github.com/CoopCodeCommun/Docs2static"
Repository = "https://github.com/CoopCodeCommun/Docs2static"
[project.markdown_extensions]
admonition = true
pymdownx.details = true
pymdownx.superfences = true
[tool.hatch.build.targets.wheel]
packages = ["docs2static"]
[tool.hatch.build.targets.sdist]
include = ["docs2static/", "README.md", "LICENSE"]