forked from mwouts/jupytext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.73 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
from os import path
from io import open
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='jupytext',
version='0.6.5',
author='Marc Wouts',
author_email='[email protected]',
description='Jupyter notebooks as Markdown documents, '
'Julia, Python or R scripts',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/mwouts/jupytext',
packages=find_packages(),
entry_points={'console_scripts': ['jupytext = jupytext.cli:jupytext'],
'nbconvert.exporters':
['rmarkdown = jupytext:RMarkdownExporter',
'pynotebook = jupytext:PyNotebookExporter',
'rnotebook = jupytext:RNotebookExporter']},
tests_require=['pytest'],
install_requires=['nbformat>=4.0.0', 'mock', 'pyyaml', 'testfixtures'],
license='MIT',
classifiers=('Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Jupyter',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7')
)