-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
47 lines (45 loc) · 1.61 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
42
43
44
45
46
47
# -*- coding: utf-8 -*-
from os.path import dirname, join
from setuptools import setup
setup(
author = "Ruslan Korniichuk",
author_email = "[email protected]",
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: Public Domain",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
],
description = "The remote jupyter kernel/kernels administration utility",
download_url = "https://github.com/korniichuk/rk/archive/0.3.zip",
entry_points = {
'console_scripts': 'rk = rk.rk:main'
},
include_package_data = True,
install_requires = [
"configobj",
"execnet",
"paramiko"
],
keywords = ["ipython", "jupyter", "remote kernel", "rk", "python2"],
license = "Public Domain",
long_description = open(join(dirname(__file__), "README.rst")).read(),
name = "rk",
packages = ["rk"],
platforms = ["Linux"],
scripts=['scripts/rkscript'],
url = "https://github.com/korniichuk/rk",
version = "0.3b1",
zip_safe = True
)