-
Notifications
You must be signed in to change notification settings - Fork 395
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 837 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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="dev@datadoghq.com",
classifiers=[
"Programming Language :: Python :: 3.13",
],
keywords="datadog aws lambda layer",
python_requires=">=3.13, <3.14",
extras_require={
"dev": ["nose2==0.9.1", "flake8==3.7.9", "requests==2.22.0", "boto3==1.10.33"]
},
py_modules=[],
)