forked from haginara/sshpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.48 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
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from sshpt import version
EXCLUDE_FROM_PACKAGES = ['test']
# Meta
DESCRIPTION = 'SSH Power Tool, Run commands and copy files to multiple servers simultaneously WITHOUT requiring pre-shared authentication keys'
__license__ = "GNU General Public License (GPL) Version 3"
__author__ = 'Dan McDougall <YouKnowWho@YouKnowWhat.com>'
__second_author__ = 'Jonghak Choi <haginara@gmail.com>'
install_requires = ['paramiko>=2.4.2']
setup(
name='sshpt',
license=__license__,
version=version.__version__,
author="{},{}".format(__author__, __second_author__),
author_email='haginara@gmail.com',
url='https://github.com/haginara/sshpt',
description=DESCRIPTION,
long_description=open('README.md').read(),
keywords='ssh administration parallel',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: Unix",
"Environment :: Console",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: System :: Systems Administration",
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
install_requires=install_requires,
entry_points={
'console_scripts': [
'sshpt = sshpt.main:main',
],
},
)