-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
35 lines (30 loc) · 969 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
35
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__), 'marketo'))
from version import VERSION
long_description = '''
marketo-python is a python query client that wraps the Marketo SOAP API.
For sending data to Marketo, check out https://segment.io.
'''
setup(
name='marketo',
version=VERSION,
url='https://github.com/segmentio/marketo-python',
author='Ilya Volodarsky',
author_email='[email protected]',
maintainer='Segment.io',
maintainer_email='[email protected]',
packages=['marketo', 'marketo.wrapper'],
license='MIT License',
install_requires=[
'requests',
'iso8601'
],
description='marketo-python is a python query client that wraps the Marketo SOAP API.',
long_description=long_description
)