forked from huashengdun/webssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.19 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
import codecs
import os
from setuptools import setup
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
__version__ = None
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'webssh',
"_version.py")) as version_file:
exec(version_file.read())
setup(
name='webssh',
version=__version__,
description='Web based ssh client',
long_description=long_description,
author='Shengdun Hua',
author_email='[email protected]',
url='https://github.com/huashengdun/webssh',
packages=['webssh'],
entry_points='''
[console_scripts]
wssh = webssh.main:main
''',
license='MIT',
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'tornado>=4.5.0',
'paramiko>=2.3.1',
],
)