-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (36 loc) · 1.41 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
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 = 'http://github.com/Scotts-Marketplace/bronto-python/'
requires = ['suds-jurko', 'six']
setup(name='bronto-python',
version=VERSION,
author='Joey Wilhelm',
author_email='joey@scottsmarketplace.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',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)