-
Notifications
You must be signed in to change notification settings - Fork 282
/
setup.py
64 lines (61 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
from saws.__init__ import __version__
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
install_requires = [
'awscli>=1.7.46,<2.0.0',
'click>=4.0,<7.0',
'configobj>=5.0.6,<6.0.0',
'prompt-toolkit>=1.0.0,<1.1.0',
'six>=1.9.0,<2.0.0',
'pygments>=2.0.2,<3.0.0'
]
if sys.version_info < (2, 7):
# Introduced in Python 2.7
install_requires.append('ordereddict>=1.1')
if sys.version_info < (3, 4):
# Backport of Python 3.4 enums to earlier versions
install_requires.append('enum34>=1.0.4')
setup(
description='SAWS: A Supercharged AWS Command Line Interface (CLI)',
author='Donne Martin',
url='https://github.com/donnemartin/saws',
download_url='https://pypi.python.org/pypi/saws',
author_email='[email protected]',
version=__version__,
license='Apache License 2.0',
install_requires=install_requires,
extras_require={
'testing': [
'mock>=1.0.1',
'tox>=1.9.2'
],
},
entry_points={
'console_scripts': 'saws = saws.main:cli'
},
packages=find_packages(),
package_data={'saws': ['sawsrc',
'saws.shortcuts',
'data/SOURCES.txt',
'data/RESOURCES_SAMPLE.txt',
'data/OPTIONS.txt']},
scripts=[],
name='saws',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)