-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
32 lines (29 loc) · 931 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
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.5",
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="[email protected]",
url="https://github.com/newrelic/newrelic-lambda-cli",
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=[
"boto3<5",
"click>=7.1.2",
"colorama",
"gql>=2,<3",
"requests<3",
"tabulate",
],
setup_requires=["pytest-runner"],
entry_points={
"console_scripts": ["newrelic-lambda = newrelic_lambda_cli.cli:main"]
},
include_package_data=True,
zip_safe=False,
)