forked from cfriedline/remote_ikernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 859 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
# default to setuptools so that 'setup.py develop' is available,
# but fall back to standard modules that do the same
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='remote_ikernel',
version='0.4.1',
description='Running IPython kernels through batch queues',
long_description=open('README.rst').read(),
author='Tom Daff',
author_email='[email protected]',
license='BSD',
url='https://bitbucket.org/tdaff/remote_ikernel',
packages=['remote_ikernel'],
scripts=['bin/remote_ikernel'],
install_requires=['notebook', 'pexpect', 'tornado'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Framework :: IPython',
'License :: OSI Approved :: BSD License'])