-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.41 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 = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dunderlab-docs"
version = "1.20"
description = "A documentation toolkit that integrates Sphinx and Jupyter tools, designed to streamline the creation of scientific and technical documentation with support for Jupytext, nbsphinx, and customizable themes."
readme = "README.md"
authors = [
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
]
maintainers = [
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
]
license = { text = "Simplified BSD License" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Hardware Drivers"
]
dependencies = [
"nbsphinx",
"jupytext",
"sphinx",
"urllib3",
"ipython",
"ipykernel",
"sphinxcontrib-bibtex",
"pygments",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dunderlab"]
[project.scripts]
dunderlab_docs = "dunderlab.docs.scripts.dunderlab_docs:main"