-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.02 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.02 KB
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
# 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/rpyc_ikernel"]
setup(
name="rpyc_ikernel",
version="0.5.1",
description="rpyc for jupyter kernel",
long_description=open('README.md', 'r', encoding='UTF-8').read(),
long_description_content_type='text/markdown',
author="Juwan",
author_email="juwan@sipeed.com",
license="BSD",
url="https://github.com/sipeed/rpyc_ikernel",
packages=["rpyc_ikernel"],
# scripts=scripts,
# entry_points={"console_scripts": ["rpyc_ikernel = rpyc_ikernel.__main__:main"]},
install_requires=["notebook", "pexpect", "rpyc", "pillow"],
tests_requires=["pytest", "scripttest"],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Framework :: IPython",
"License :: OSI Approved :: BSD License",
],
)