-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 1.02 KB
/
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
#!/usr/bin/env python
"""Setup aws_xray_lambda_segment_shim package."""
import re
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst"), encoding="utf-8") as f:
long_description = re.sub(r"..\s*doctest\s*::", ".. code-block ::", f.read())
setup(
version="0.5.3",
python_requires=">=3.6.0",
name="aws_xray_lambda_segment_shim",
packages=find_packages(include=["aws_xray_lambda_segment_shim"]),
description="A shim which faciliates the AWS X-Ray tracing of"
" Lambda Functions invoked by triggers which don't have native X-Ray support.",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Sam Martin",
author_email="[email protected]",
url="https://github.com/sam-martin/aws-xray-lambda-segment-shim",
install_requires=["aws-xray-sdk", "jmespath"],
package_data={
"": ["py.typed"],
},
)