-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (39 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·43 lines (39 loc) · 1.06 KB
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
#!/usr/bin/env python3
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='awslogs-sd',
version='0.5',
description="Forward systemd journal logs to cloudwatch",
long_description=readme,
author="Marcin Bachry",
author_email='hegel666@gmail.com',
url='https://github.com/mbachry/awslogs-sd',
packages=['awslogs_sd'],
install_requires=[
'awscli-cwlogs',
'boto3',
'gevent',
'pyyaml',
'requests',
'retrying',
'systemd-python',
],
entry_points={
'console_scripts': [
'awslogs-sd=awslogs_sd.awslogs_sd:main'
],
},
license="MIT",
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)