forked from salesforce-marketingcloud/FuelSDK-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 878 Bytes
/
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
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
version='1.2.0',
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'],
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',
],
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',
],
)