forked from iMerica/bronto-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (37 loc) · 1.36 KB
/
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
36
37
38
39
40
41
42
import os
from setuptools import find_packages, setup
import bronto
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
VERSION = bronto.__version__
github_url = 'https://github.com/TriggeredMessaging/bronto-python'
requires = [
'suds-py3==1.3.3.0; python_version>"3.0"',
'suds==0.4; python_version<"3.0"',
'six'
]
setup(name='bronto-python',
version=VERSION,
author='Fresh Relevance',
author_email='joshua.yeomans-gladwin@freshrelevance.com',
license='Apache',
url=github_url,
download_url='%sarchive/%s.tar.gz' % (github_url, VERSION),
packages=find_packages(),
include_package_data=True,
install_requires=requires,
tests_require=requires + ['mock'],
description='A python wrapper around Bronto\'s SOAP API',
long_description=open('README.rst').read(),
keywords=['bronto', 'soap', 'marketing'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
]
)