-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (43 loc) · 1.54 KB
/
setup.py
File metadata and controls
51 lines (43 loc) · 1.54 KB
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
#!/usr/bin/env python
from setuptools import setup
import os
# import all of this version information
__version__ = '0.8.14'
__author__ = 'dave@springserve.com'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2016 Springserve'
__title__ = 'springserve'
dir = os.path.split(os.path.abspath(__file__))[0]
DESCRIPTION = "API Library for console.springserve.com"
LONG_DESCRIPTION = """Springserve is a video adserver, and this library allows you
to interface with its api to do read/write and reporting requests """
URL = 'http://www.springserve.com'
DOWNLOAD_URL = ''
CLASSIFIERS = ['Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
]
EMAIL = ''
SETUP_ARGS = {}
REQUIRES = ['requests>=2.0.0', 'requests_oauthlib>=0.4.0',
'link>=0.3.1','xmltodict', 'six', 'requests-toolbelt' ]
# The reporting API depends on pandas
EXTRAS_REQUIRE = {'reporting': ['pandas']}
# write out the version file so we can keep track on what version the built
# package is
# call setup so it can build the package
setup(name=__title__,
version=__version__,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=__license__,
maintainer_email=EMAIL,
maintainer=__author__,
url=URL,
packages=['springserve'],
install_requires=REQUIRES,
extras_require=EXTRAS_REQUIRE,
#data_files = DATA_FILES,
classifiers=CLASSIFIERS,
**SETUP_ARGS)