forked from jepcastelein/marketo-rest-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1001 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
31
32
33
34
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Don't import analytics-python module here, since deps may not be installed
# sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'pymarketo'))
# python setup.py register -r pypi
# python setup.py sdist upload -r pypi
long_description = '''
Marketo Python REST is a Python client that wraps the Marketo Rest API.
Originally developed by asamat with contributions from sandipsinha
'''
setup(
name='marketorestpython',
version= '0.3.7',
url='https://github.com/jepcastelein/marketo-rest-python',
author='Jep Castelein',
author_email='[email protected]',
packages=['marketorestpython', 'marketorestpython.helper'],
license='MIT License',
install_requires=[
'requests',
],
keywords = ['Marketo', 'REST API', 'Wrapper', 'Client'],
description='Python Client for the Marketo REST API',
long_description=long_description
)