forked from salesforce-marketingcloud/FuelSDK-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 732 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
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
version='0.9.0',
name='FuelSDK',
description='ExactTarget Fuel SDK for Python',
long_description=readme,
author='ExactTarget',
author_email='[email protected]',
py_modules=['ET_Client'],
packages=['FuelSDK'],
url='https://github.com/ExactTarget/FuelSDK-Python',
license='MIT',
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',
],
)