-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
32 lines (29 loc) · 1014 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
31
32
# 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
scripts = []
except ImportError:
from distutils.core import setup
scripts = ["bin/remote_ikernel"]
setup(
name="remote_ikernel",
version="0.4.6",
description="Running IPython kernels through batch queues",
long_description=open("README.rst").read(),
author="Tom Daff",
author_email="[email protected]",
license="BSD",
url="https://github.com/tdaff/remote_ikernel",
packages=["remote_ikernel"],
scripts=scripts,
entry_points={"console_scripts": ["remote_ikernel = remote_ikernel.__main__:main"]},
install_requires=["notebook", "pexpect", "tornado"],
tests_requires=["pytest", "scripttest"],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Framework :: IPython",
"License :: OSI Approved :: BSD License",
],
)