File: setup.py

package info (click to toggle)
sagenb-export 3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 556 kB
  • sloc: python: 590; javascript: 35; makefile: 11; sh: 8
file content (24 lines) | stat: -rwxr-xr-x 570 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python

from setuptools import setup, find_packages

setup(
    name='sagenb_export',
    description='Export Notebooks from SageNB',
    author='Volker Braun',
    author_email='vbraun.name@gmail.com',
    install_requires=[
        'ipython>=4',
        'nbconvert>=4',
        'notebook',
    ],
    packages=find_packages(),
    include_package_data=True,
    entry_points={
        'console_scripts': [
            'sagenb-export = sagenb_export.cmdline:main',
        ],
    },
    version='3.3',
    url='https://github.com/vbraun/ExportSageNB',
)