File: setup.py

package info (click to toggle)
nbsphinx 0.2.9%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,244 kB
  • ctags: 203
  • sloc: python: 915; makefile: 28; sed: 9
file content (41 lines) | stat: -rw-r--r-- 1,152 bytes parent folder | download | duplicates (2)
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
from setuptools import setup

# "import" __version__
for line in open("nbsphinx.py"):
    if line.startswith("__version__"):
        exec(line)
        break

setup(
    name='nbsphinx',
    version=__version__,
    py_modules=['nbsphinx'],
    install_requires=[
        'docutils',
        'jinja2',
        'nbconvert',
        'nbformat',
        'sphinx',
    ],
    author='Matthias Geier',
    author_email='Matthias.Geier@gmail.com',
    description='Jupyter Notebook Tools for Sphinx',
    long_description=open('README.rst').read(),
    license='MIT',
    keywords='Sphinx Jupyter notebook'.split(),
    url='http://nbsphinx.rtfd.org/',
    platforms='any',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Framework :: Sphinx',
        'Framework :: Sphinx :: Extension',
        'Intended Audience :: Education',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Topic :: Documentation :: Sphinx',
    ],
    zip_safe=True,
)