forked from markvincze/sabledocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 894 Bytes
/
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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "sabledocs"
version = "0.13"
authors = [
{ name="Mark Vincze", email="[email protected]" },
]
description = "Static documentation generator for Protobuf and gRPC"
readme = "README.md"
requires-python = ">=3.11.0"
dependencies = [
"Jinja2==3.1.2",
"Markdown==3.4.1",
"protobuf==4.21.6",
"lunr==0.6.2",
"furl==2.1.3",
]
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/markvincze/sabledocs"
"Bug Tracker" = "https://github.com/markvincze/sabledocs/issues"
[project.scripts]
sabledocs = "sabledocs.__main__:cli"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools]
include-package-data = true