forked from awslabs/cloudwatch-fluent-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 803 Bytes
/
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
import os
import setuptools
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='cloudwatch-fluent-metrics',
packages=setuptools.find_packages(),
version='0.4.0',
description='AWS CloudWatch Fluent Metrics',
long_description=read('README.md'),
author='troylar',
author_email='[email protected]',
url='https://github.com/awslabs/cloudwatch-fluent-metrics',
download_url='https://github.com/awslabs/cloudwatch-fluent-metrics/cloudwatch-fluent-metrics-v0.1.tgz', # noqa: E501
keywords=['metrics', 'logging', 'aws', 'cloudwatch'],
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
]
)