-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (32 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup
import versioneer
with open('requirements.txt', 'r') as fp:
requirements = list(filter(bool, (line.strip() for line in fp)))
with open('README.md', 'rb') as fp:
long_description = fp.read().decode('utf-8')
setup(
name='remote_kernel',
author='Joost van Griethuysen',
author_email='joostjm@gmail.com',
version=versioneer.get_version(),
packages=['remote_kernel'],
package_data={'remote_kernel': ['resources/*.png']},
zip_safe=False,
description='Python Script to connect to remote IPyKernel via ssh',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD License',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities'
],
install_requires=requirements,
keywords='remote-kernel,ipykernel,ssh'
)