forked from jorgebastida/awslogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.33 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
from setuptools import setup, find_packages
install_requires = [
'boto3>=1.5.0',
'jmespath>=0.7.1,<1.0.0',
'termcolor>=1.1.0',
'python-dateutil>=2.4.0'
]
setup(
name='awslogs',
version='0.14.0',
url='https://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',
python_requires=">=3.5.*",
install_requires=install_requires,
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'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
)