-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
46 lines (42 loc) · 1.34 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
import sys
from setuptools import setup, find_packages
install_requires = [
'boto3>=1.2.1',
'termcolor>=1.1.0',
'python-dateutil>=2.4.0',
'awslogs',
]
# as of Python >= 2.7 argparse module is maintained within Python.
if sys.version_info < (2, 7):
install_requires.append('argparse>=1.1.0')
setup(
name='apilogs',
version='1.3',
url='http://github.com/rpgreen/apilogs',
license='BSD',
author='Ryan Green',
author_email='[email protected]',
description='Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs',
long_description='Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs',
keywords="aws logs cloudwatch api gateway lambda serverless logging",
packages=find_packages(),
platforms='any',
install_requires=install_requires,
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'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': [
'apilogs = apilogs.bin:main',
]
},
zip_safe=False
)