forked from jupyter/jupyter-sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1020 Bytes
/
setup.py
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
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
name = 'jupyter_sphinx'
version_ns = {}
with open(os.path.join(here, name, '_version.py')) as f:
exec(f.read(), {}, version_ns)
setup(
name = name,
version = version_ns['__version__'],
author = 'Jupyter Development Team',
author_email = '[email protected]',
description = 'Jupyter Sphinx Extensions',
url = 'https://github.com/jupyter/jupyter-sphinx/',
project_urls = {
'Bug Tracker': 'https://github.com/jupyter/jupyter-sphinx/issues/',
'Documentation': 'https://jupyter-sphinx.readthedocs.io',
'Source Code': 'https://github.com/jupyter/jupyter-sphinx/',
},
license = 'BSD',
packages = ['jupyter_sphinx'],
install_requires = [
'Sphinx>=1.8',
'ipywidgets>=7.0.0',
'IPython',
'nbconvert>=5.5',
'nbformat',
],
python_requires = '>= 3.5',
package_data={'jupyter_sphinx': ['thebelab/*', 'css/*']},
)