-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (34 loc) · 1.13 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
from __future__ import print_function
from setuptools import setup, Extension
import qlikreader
setup(
name='qlikreader',
version=qlikreader.__version__,
author='Pramod Toraskar',
author_email='',
url='https://github.com/rh-marketingops/qlikreader',
install_requires=[
'retrying==1.3.3',
'selenium==2.53.6',
'six==1.10.0'
],
packages=['qlikreader'],
package_dir={'xvfb': ''},
#ext_modules=[Extension('xvfb', ['Xvfb.x'])],
include_package_data=True,
license='GNU General Public License',
platforms='any',
classifiers=[
'Programming Language :: Python',
'Development Status :: 0 - Beta',
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
keywords='marketing automation data qlikview',
zip_safe=False
)