-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 929 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
28
29
30
31
32
33
34
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nb_pdf_template"
version = "5.0.1"
description = "LaTeX templates for Jupyter notebook conversion to PDF"
readme = "README.md"
requires-python = ">=3.6"
license = { text = "MIT" }
authors = [
{ name = "Tyler Makaro", email = "" }
]
urls = { "Homepage" = "https://github.com/t-makaro/nb_pdf_template" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Topic :: Text Processing :: Markup :: LaTeX",
"Programming Language :: Python :: 3",
]
[tool.hatch.build.targets.wheel]
include = [
"nb_pdf_template/**",
"README.md",
"LICENSE",
]
[project.entry-points."pygments.styles"]
jupyter_python = "nb_pdf_template:Jupyter_PythonStyle"
[tool.hatch.build.targets.wheel.shared-data]
"share/templates" = "share/jupyter/nbconvert/templates"