-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
36 lines (30 loc) · 969 Bytes
/
setup.cfg
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
[metadata]
name = nbconvert_article_html
version = 0.9.1
description = Tools based on nbconvert to render a Jupyter notebook into a self-contained HTML file whose layout is similar to a LaTeX article.
url = https://github.com/hamelin/nbconvert-article-html
author = Benoit Hamelin
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Topic :: Software Development :: Interpreters
[options]
packages = find:
include_package_data = True
python_requires = >=3.8
install_requires =
nbconvert
bs4
[options.packages.find]
exclude = test
[options.package_data]
nbconvert_article_html =
template/article-html/*
[options.entry_points]
nbconvert.exporters =
article-html = nbconvert_article_html:ArticleHTMLExporter