forked from dreambits/python-bol-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.43 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
import sys
from setuptools import setup, find_packages
import bol
# Dynamically calculate the version based on actistream.VERSION.
VERSION = bol.__version__
IS_PY2 = sys.version_info[0] < 3
install_requires = [
'python-dateutil',
'requests']
if IS_PY2:
install_requires.append('enum34')
setup(name='python-bol-api-latest',
version=VERSION,
description="Wrapper for the bol.com API",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: System',
'Topic :: System :: Software Distribution',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: '
'GNU Lesser General Public License v3 or later (LGPLv3+)',
],
keywords='bol bol.com api wrapper',
author='Raymond Penners, Dreambits Technologies Pvt. Ltd.',
author_email='[email protected]',
url='https://dreambits.in',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="")