-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
40 lines (34 loc) · 1.15 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
__version__ = "0.1.6"
def read_me():
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
return f.read()
setup(
name="linus_colab_ssh",
version=__version__,
description='Create SSH tunel to a running colab notebook',
long_description=read_me(),
long_description_content_type='text/markdown',
url='https://github.com/lamhoangtung/colab_ssh',
author='Hoang Tung Lam',
author_email='lamhoangtung.vz@gmail.com',
include_package_data=True,
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
keywords=['ssh', 'colab'],
setup_requires=[],
dependency_links=[],
python_requires='>=3',
py_modules=['ssh_colab'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)