sshch/setup.py

41 lines
1.4 KiB
Python
Raw Permalink Normal View History

2017-07-25 10:07:47 +00:00
#!/usr/bin/env python
"""Setup script for sshch"""
def main():
from distutils.core import setup
setup(name='sshch',
author='zlaxy',
2018-04-23 19:07:22 +00:00
author_email='zlaxyi@gmail.com',
2018-11-28 11:27:06 +00:00
url='https://gitlab.com/zlax/sshch',
2018-04-23 19:07:22 +00:00
description='Ssh connection and aliases manager',
long_description='SSH connection and aliases manager with curses and command line interface',
long_description_content_type='text/x-rst',
license='DWTWL 2.55',
version='1.09.7',
2017-07-25 10:07:47 +00:00
py_modules=['sshch'],
scripts=['sshch/sshch'],
2018-11-28 11:27:06 +00:00
keywords='sshch ssh aliases curses manager',
2018-04-23 19:07:22 +00:00
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4',
2017-07-25 10:07:47 +00:00
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
2018-04-23 19:07:22 +00:00
'Development Status :: 5 - Production/Stable',
2017-07-25 10:07:47 +00:00
'Environment :: Console :: Curses',
'Intended Audience :: System Administrators',
'License :: Freeware',
'Natural Language :: English',
'Operating System :: POSIX',
2018-04-23 19:07:22 +00:00
'Programming Language :: Python',
2017-07-25 10:07:47 +00:00
'Topic :: Internet',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'])
return 0
if __name__ == '__main__':
import sys
sys.exit(main())