-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathsetup.py
24 lines (23 loc) · 887 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
# Unless explicitly stated otherwise all files in this repository are licensed
# under the Apache License Version 2.0.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2021 Datadog, Inc.
from setuptools import setup
setup(
name="aws-dd-forwarder",
version="0.0.0.dev0",
description="Datadog AWS Forwarder Lambda Function",
url="https://github.com/DataDog/datadog-serverless-functions/tree/master/aws/logs_monitoring",
author="Datadog, Inc.",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="datadog aws lambda layer",
python_requires=">=3.11, <3.13",
extras_require={
"dev": ["nose2==0.9.1", "flake8==3.7.9", "requests==2.22.0", "boto3==1.10.33"]
},
py_modules=[],
)