-
Notifications
You must be signed in to change notification settings - Fork 337
/
setup.py
46 lines (42 loc) · 1.36 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.34.75",
"jmespath>=1.0.1",
"termcolor>=2.4.0",
"python-dateutil>=2.9.0",
]
setup(
name="awslogs",
version="0.15.0",
url="https://github.com/jorgebastida/awslogs",
license="BSD",
author="Jorge Bastida",
author_email="[email protected]",
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(exclude=['tests']),
platforms="any",
python_requires=">=3.8",
install_requires=install_requires,
test_suite="tests",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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,
)