forked from newrelic/newrelic-lambda-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1004 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
30
31
32
33
34
import os
from setuptools import find_packages, setup
README = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read()
setup(
name="newrelic-lambda-cli",
version="0.9.1",
python_requires=">=3.3",
description="A CLI to install the New Relic AWS Lambda integration and layers.",
long_description=README,
long_description_content_type="text/markdown",
author="New Relic",
author_email="serverless-dev@newrelic.com",
url="https://github.com/newrelic/newrelic-lambda-cli",
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=[
"boto3<5",
"click>=7.1.2",
"colorama",
"emoji>=2,<3",
"gql>=2,<3",
"requests<3",
"tabulate",
],
setup_requires=["pytest-runner"],
tests_require=["moto", "pytest", "requests"],
entry_points={
"console_scripts": ["newrelic-lambda = newrelic_lambda_cli.cli:main"]
},
include_package_data=True,
zip_safe=False,
)