forked from jorgebastida/awslogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (46 loc) · 1.44 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
import sys
from setuptools import setup, find_packages
install_requires = [
'boto>=2.35.0',
'termcolor>=1.1',
'gevent>=1.0'
]
tests_require = []
# as of Python >= 2.7 argparse module is maintained within Python.
if sys.version_info < (2, 7):
install_requires.append('argparse>=1.1')
# as of Python >= 3.3 unittest.mock module is maintained within Python.
if sys.version_info < (3, 3):
tests_require.append('mock>=1.0')
setup(
name='awslogs',
version='0.0.1',
url='http://github.com/jorgebastida/awslogs',
license='BSD',
author='Jorge Bastida',
author_email='me@jorgebastida.com',
description='awslogs is a simple command line tool to read aws cloudwatch logs.',
long_description='awslogs is a simple command line tool to read aws cloudwatch logs.',
keywords="aws logs cloudwatch",
packages=find_packages(),
platforms='any',
install_requires=install_requires,
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Utilities'
],
entry_points={
'console_scripts': [
'awslogs = awslogs.bin:main',
]
},
zip_safe=False,
use_2to3=True
)