setup.py (1126B)
1 import codecs 2 from setuptools import setup 3 from webssh._version import __version__ as version 4 5 6 with codecs.open('README.rst', encoding='utf-8') as f: 7 long_description = f.read() 8 9 10 setup( 11 name='webssh', 12 version=version, 13 description='Web based ssh client', 14 long_description=long_description, 15 author='Shengdun Hua', 16 author_email='webmaster0115@gmail.com', 17 url='https://github.com/huashengdun/webssh', 18 packages=['webssh'], 19 entry_points=''' 20 [console_scripts] 21 wssh = webssh.main:main 22 ''', 23 license='MIT', 24 include_package_data=True, 25 classifiers=[ 26 'Programming Language :: Python', 27 'Programming Language :: Python :: 2', 28 'Programming Language :: Python :: 2.7', 29 'Programming Language :: Python :: 3', 30 'Programming Language :: Python :: 3.4', 31 'Programming Language :: Python :: 3.5', 32 'Programming Language :: Python :: 3.6', 33 'Programming Language :: Python :: 3.7', 34 'Programming Language :: Python :: 3.8', 35 ], 36 install_requires=[ 37 'tornado>=4.5.0', 38 'paramiko>=2.3.1', 39 ], 40 )