forked from jupyterlab/jupyterlab-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1008 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
"""
Setup module for the jupyterlab-latex
"""
import setuptools
setuptools.setup(
name='jupyterlab_latex',
description='A Jupyter Notebook server extension which acts as an endpoint for LaTeX.',
version='0.1.1',
packages=setuptools.find_packages(),
author = 'Jupyter Development Team',
author_email = '[email protected]',
url = 'http://jupyter.org',
license = 'BSD',
platforms = "Linux, Mac OS X, Windows",
keywords = ['Jupyter', 'JupyterLab', 'LaTeX'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=[
'notebook'
],
package_data={'jupyterlab_latex':['*']},
)