We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
future
1 parent 6e30483 commit ce516b2Copy full SHA for ce516b2
setup.py
@@ -1,5 +1,3 @@
1
-import sys
2
-
3
from setuptools import setup, find_packages
4
from os import path
5
from aws_xray_sdk.version import VERSION
@@ -14,15 +12,6 @@
14
12
15
13
long_description = read_md(path.join(CURRENT_DIR, 'README.md'))
16
17
-INSTALL_REQUIRED_DEPS = [
18
- 'enum34;python_version<"3.4"',
19
- 'wrapt',
20
- 'botocore>=1.11.3',
21
-]
22
23
-if sys.version_info[0] == 2:
24
- INSTALL_REQUIRED_DEPS.append("future")
25
26
setup(
27
name='aws-xray-sdk',
28
version=VERSION,
@@ -55,7 +44,12 @@
55
44
'Programming Language :: Python :: 3.9',
56
45
],
57
46
58
- install_requires=INSTALL_REQUIRED_DEPS,
47
+ install_requires=[
48
+ 'enum34;python_version<"3.4"',
49
+ 'wrapt',
50
+ 'future;python_version<"3"',
51
+ 'botocore>=1.11.3',
52
+ ],
59
53
60
54
keywords='aws xray sdk',
61
0 commit comments