-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
28 lines (24 loc) · 876 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
28
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.5.3.dev0',
description='AWS CloudWatch Fluent Metrics',
long_description=read('README.md'),
long_description_content_type='text/markdown',
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="Apache-2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
]
)