-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.63 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = 'v0.3.0'
LONG_DESCRIPTION = """
This package contains a [Sphinx](http://www.sphinx-doc.org/en/master/) extension
for building Jupyter notebooks.
The default behavior of the `jupyter` builder is to provide notebooks that are readable
with an emphasis on supporting basic markdown into the notebooks.
This project is maintained and supported by [QuantEcon](http://quantecon.org/)
"""
setup(
name='sphinx-tojupyter',
version=VERSION,
url='https://github.com/QuantEcon/sphinx-tojupyter',
download_url='https://github.com/QuantEcon/sphinx-tojupyter/archive/{}.tar.gz'.format(VERSION),
license='BSD',
author='QuantEcon',
author_email='[email protected]',
description='Sphinx "Jupyter" extension to build Jupyter notebooks.',
long_description=LONG_DESCRIPTION,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Sphinx',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Framework :: Sphinx :: Extension',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=[
'sphinx>=5',
'myst-nb>=0.14', #nb_mime_priority_overrides
'pyyaml',
'nbformat',
'nbconvert',
'dask[distributed]',
'nbdime',
],
)