forked from BingAds/BingAds-Python-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (58 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = '10.4.10'
with open('README.rst', 'r') as f:
readme = f.read()
with open('HISTORY.rst', 'r') as f:
history = f.read().replace('.. :changelog:', '')
requirements = [
'suds-jurko==0.6.0',
'future',
'six',
'requests',
'enum34',
'chardet',
]
setup(
name='bingads',
version=VERSION,
description='A library to make working with the Bing Ads APIs and bulk services easy',
long_description=readme + '\n\n' + history,
author='Bing Ads SDK Team',
author_email='bing_ads_sdk@microsoft.com',
url='https://github.com/BingAds/BingAds-Python-SDK',
packages=[
'bingads',
'bingads.reporting',
'bingads.internal',
'bingads.v10',
'bingads.v10.bulk',
'bingads.v10.bulk.entities',
'bingads.v10.bulk.entities.ad_extensions',
'bingads.v10.bulk.entities.targets',
'bingads.v10.internal',
'bingads.v10.internal.bulk',
'bingads.v10.internal.bulk.entities',
],
include_package_data=True,
install_requires=requirements,
license='MIT',
zip_safe=False,
keywords='bingads',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)