forked from emre/storm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 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
import sys
from setuptools import setup, find_packages
setup(
name='stormssh',
version='0.7.0',
packages=find_packages(),
package_data={'storm': ['templates/*.html', 'static/css/*.css',
'static/css/themes/storm/*.css', 'static/css/themes/storm/img/*.png',
'static/js/*.js', 'static/js/core/*.js', 'static/favicon.ico']},
include_package_data=True,
url='http://github.com/emre/storm',
license='MIT',
author='Emre Yilmaz',
author_email='[email protected]',
description='Management commands to ssh config files.',
entry_points={
'console_scripts': [
'storm = storm.__main__:main',
],
},
install_requires=list(filter(None, [
"paramiko",
"termcolor",
"flask",
"argparse" if sys.version_info[:2] < (2, 7) else None,
"six",
])),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Systems Administration',
]
)