-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 918 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
# -*- coding: utf-8 -*-
from setuptools import setup
try:
from jupyterpip import cmdclass
except:
import pip, importlib
pip.main(['install', 'jupyter-pip']); cmdclass = importlib.import_module('jupyterpip').cmdclass
setup(
name='jsobject',
version='0.1',
description='Exposes Javascript in Python (in the IPython notebook).',
author='Jonathan Frederic',
author_email='[email protected]',
license='MIT License',
url='https://github.com/jdfreder/ipython-jsobject',
keywords='python ipython javascript jsobject pyjsobject front-end frontend window',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'],
packages=['jsobject'],
include_package_data=True,
install_requires=["jupyter-pip"],
cmdclass=cmdclass('jsobject', 'jsobject/backend_context'),
)