-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 735 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 735 Bytes
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 marketo import VERSION
from distutils.core import setup
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='ilya@segment.io',
maintainer='Segment.io',
maintainer_email='friends@segment.io',
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
)