forked from newrelic/newrelic-lambda-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1022 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
import os
from setuptools import find_packages, setup
try:
from pypandoc import convert
README = convert("README.md", "rst")
except (ImportError, OSError):
README = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read()
setup(
name="newrelic-lambda-cli",
version="0.1.19",
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/x-rst",
author="New Relic",
author_email="[email protected]",
url="https://github.com/newrelic/newrelic-lambda-cli",
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=["boto3", "click", "colorama", "gql", "requests", "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,
)