forked from salesforce-marketingcloud/FuelSDK-Python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 868 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.1.0',
name='MarketingCloudSDK',
description='ExactTarget Fuel SDK for Python',
long_description=readme,
author='ExactTarget',
author_email='[email protected]',
py_modules=['ET_Client'],
packages=['MarketingCloudSDK'],
url='https://github.com/salesforce-marketingcloud/FuelSDK-Python',
license='MIT',
install_requires=[
'pyjwt>=0.1.9',
'requests>=2.2.1',
'suds>=0.4',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2.7',
],
)