-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
33 lines (31 loc) · 1.03 KB
/
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
31
32
33
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
version='1.3.4',
name='FuelSDKWrapper',
description='Simplify and enhance the FuelSDK for Salesforce Marketing Cloud (ExactTarget)',
long_description=readme,
long_description_content_type="text/markdown",
author='Seb Angel',
author_email='[email protected]',
py_modules=['FuelSDKWrapper'],
packages=[],
url='https://github.com/seb-angel/FuelSDK-Python-Wrapper',
license='MIT',
install_requires=[
'Salesforce-FuelSDK>=1.3.0',
'PyJWT>=0.1.9',
'requests>=2.18.4',
'suds-jurko>=0.6'
],
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',
'Programming Language :: Python :: 3',
],
)