forked from awslabs/aws-embedded-metrics-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 974 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
29
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="aws-embedded-metrics",
version="3.1.1",
author="Amazon Web Services",
author_email="jarnance@amazon.com",
description="AWS Embedded Metrics Package",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="aws logs metrics emf",
url="https://github.com/awslabs/aws-embedded-metrics-python",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
],
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
install_requires=["aiohttp"],
test_suite="tests",
python_requires=">=3.6"
)