We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4146dc4 + 4384c00 commit 0316288Copy full SHA for 0316288
FuelSDK/client.py
@@ -10,7 +10,7 @@
10
import suds.wsse
11
from suds.sax.element import Element
12
13
-from FuelSDK.objects import ET_DataExtension,ET_Subscriber
+from objects import ET_DataExtension,ET_Subscriber
14
15
16
class ET_Client(object):
requirements.txt
@@ -1,5 +1,5 @@
1
PyJWT==0.1.9
2
distribute==0.7.3
3
-requests==2.2.1
+requests>=2.2.1
4
suds==0.4
5
wsgiref==0.1.2
setup.py
@@ -15,9 +15,9 @@
url='https://github.com/ExactTarget/FuelSDK-Python',
license='MIT',
17
install_requires=[
18
- 'pyjwt==0.1.9',
19
- 'requests==2.2.1',
20
- 'suds==0.4',
+ 'pyjwt>=0.1.9',
+ 'requests>=2.2.1',
+ 'suds>=0.4',
21
],
22
classifiers=[
23
'Development Status :: 5 - Production/Stable',
0 commit comments