forked from asamat/python_marketo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (26 loc) · 795 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
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'))
long_description = '''
python_marketo is a python query client that wraps the Marketo Rest API.
For sending data to Marketo,
'''
setup(
name='pythonmarketo',
version= '0.0.9',
url='https://github.com/asamat/python_marketo',
author='Arunim Samat',
author_email='[email protected]',
packages=['pythonmarketo', 'pythonmarketo.helper'],
license='MIT License',
install_requires=[
'requests',
],
description='Wrapper to Marketo Rest API.',
long_description=long_description
)