-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 1.06 KB
/
setup.py
File metadata and controls
24 lines (23 loc) · 1.06 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
from setuptools import setup
setup(name = 'nbref',
version = '0.1.0',
author = 'Bill Spotz',
author_email = 'wfspotz@sandia.gov',
packages = ['nbref'],
scripts = ['scripts/nb2html.py'],
url = 'https://github.com/wfspotz/nb2html',
license = 'LICENSE',
description = 'Convert Jupyter notebooks to HTML with references',
long_description = open('README.md').read(),
long_description_content_type = "text/markdown",
classifiers = ("Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"),
install_requires = ["nbconvert",
"nbformat",
"traitlets",
"pypandoc",
"pandoc-citeproc"]
)