This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
forked from aws/aws-xray-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (38 loc) · 1.45 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from os import path
from aws_xray_sdk.version import VERSION
CURRENT_DIR = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIR, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='aws-xray-sdk',
version=VERSION,
description='The AWS X-Ray SDK for Python (the SDK) enables Python developers to record'
' and emit information from within their applications to the AWS X-Ray service.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/aws/aws-xray-sdk-python',
author='Amazon Web Services',
license="Apache License 2.0",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
python_requires=">=3.7",
install_requires=[
'wrapt',
'botocore>=1.11.3',
],
keywords='aws xray sdk',
packages=find_packages(exclude=['tests*']),
include_package_data=True
)