-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.04 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
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "slicer-apidocs-builder"
dynamic = ["version"]
description = "slicer-apidocs-builder allows to generate and publish the Slicer API documentation."
readme = "README.md"
license = { file = "License.txt" }
authors = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"cmake",
"github3.py",
"python-dateutil",
]
[project.scripts]
slicer-apidocs-builder = "slicer_apidocs_builder:main"
[project.urls]
Homepage = "http://apidocs.slicer.org"
[tool.hatch.version]
path = "slicer_apidocs_builder/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/slicer_apidocs_builder",
"/License.txt",
]