forked from exasol/pyexasol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (56 loc) · 1.9 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
63
64
65
66
67
68
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 driver with low overhead, fast HTTP transport and compression. It is implemented in Python 3.6+.
Main features:
- Based on WebSocket protocol;
- Optimized for minimum overhead;
- Easy integration with pandas via HTTP transport;
- Compression to reduce network bottleneck;
PyEXASOL does not 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/exasol/pyexasol',
author='Vitaly Markov',
author_email='wild.desu@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Database',
],
keywords='exasol sql database performance websocket import export',
packages=[
'pyexasol',
'pyexasol.db2',
'pyexasol_utils',
],
install_requires=[
'websocket-client>=1.0.1',
'pyopenssl',
'rsa',
'packaging',
],
extras_require={
'pandas': ['pandas'],
'ujson': ['ujson'],
'rapidjson': ['python-rapidjson'],
'orjson': ['orjson>=3.6'],
'examples': ['pproxy'],
},
python_requires='>=3.6',
)