forked from exasol/pyexasol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (49 loc) · 1.64 KB
/
setup.py
File metadata and controls
62 lines (49 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup
import pathlib
__version__ = None
version_path = pathlib.Path(__file__).parent / 'pyexasol/version.py'
exec(version_path.read_text())
setup(
name='pyexasol',
version=__version__,
description='Exasol python driver with extra features',
long_description="""
Exasol python driver with low overhead, fast HTTP transport and compression.
Main features:
- Based on WebSocket protocol;
- Optimized for minimum overhead;
- Easy integration with pandas via HTTP transport;
- Compression to reduce network bottleneck;
PyEXASOL requires Python 3.6+.
Driver does not use ODBC. Driver does not strictly follow DB-API 2.0 in favor of Exasol-specific features.
Please read "Best practices" manual page to learn how to use PyEXASOL with maximum efficiency.
""",
long_description_content_type='text/markdown',
url='https://github.com/badoo/pyexasol',
author='Vitaly Markov',
author_email='wild.desu@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Topic :: Database',
],
keywords='exasol sql database performance websocket import export',
packages=[
'pyexasol',
'pyexasol.db2',
],
install_requires=[
'websocket-client>=0.47.0',
'rsa',
],
extras_require={
'pandas': ['pandas>=0.22,!=0.23.1'],
'encrypt': ['pyopenssl>=17.5.0'],
'ujson': ['ujson'],
'rapidjson': ['python-rapidjson'],
'pproxy': ['pproxy'],
},
python_requires='>=3.6',
)