Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Remove suds-jurko #138

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Salesforce Marketing Cloud Fuel SDK for Python

The Fuel SDK for Python provides easy access to Salesforce Marketing Cloud's Fuel API Family services, including a collection of REST APIs and a SOAP API. These APIs provide access to Salesforce Marketing Cloud functionality via common collection types such as array/hash.

New Features in Version 1.3.1
------------
* Removed dependency on suds-jurko due to setuptools>=58.0.0 not supporting 2to3, pointed to suds-community
* Removed wsgiref because it is part of the standard lib
* Removed distribute as it is part of setuptools.


New Features in Version 1.3.0
------------
* Added Refresh Token support for OAuth2 authentication
Expand Down
5 changes: 1 addition & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
PyJWT>=1.5.3
distribute==0.7.3
requests>=2.18.4
suds-jurko==0.6
wsgiref==0.1.2

suds-community>=0.7
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,28 @@
readme = f.read()

setup(
version='1.3.0',
version='1.3.1',
name='Salesforce-FuelSDK',
description='Salesforce Marketing Cloud Fuel SDK for Python',
long_description=readme,
long_description_content_type="text/markdown",
author='ExactTarget',
py_modules=['ET_Client'],
python_requires='>=3',
packages=['FuelSDK'],
url='https://github.com/salesforce-marketingcloud/FuelSDK-Python',
license='MIT',
install_requires=[
'pyjwt>=1.5.3',
'requests>=2.18.4',
'suds-jurko==0.6',
'suds-community>=0.7',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.7',
],
)