-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.77 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
46
47
48
49
50
51
from setuptools import setup, find_packages
version = {}
with open('swk/version.py') as f:
exec(f.read(), version)
url = 'https://github.com/trueneu/swiss-knife'
setup(name='swk',
version=version['__version__'],
description='Extendable command line utility for sysadmins',
author="Pavel Gurkov",
author_email="[email protected]",
url=url,
download_url='https://github.com/trueneu/swiss-knife/archive/v{vers}.zip'.format(vers=version['__version__']),
packages=find_packages(),
license='GPLv3',
platforms='Posix; MacOS X',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: System :: Systems Administration',
'Topic :: System :: Shells',
'Topic :: Utilities'
],
keywords='cli ssh pssh swiss-knife sysadmin zabbix foreman',
install_requires=[
'exrex>=0.9.4',
'paramiko>=1.16.0',
'scp>=0.10.2',
'pypsi>=1.3.0',
'six>=1.10.0'
],
long_description=open("README.rst").read(),
entry_points={
'console_scripts': [
'swk = swk.main:main'
],
},
include_package_data=True,
package_data={'swk': ['swk/swk.ini']},
)