forked from exasol/sqlalchemy-exasol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.68 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Defines the setup for this package.
Do not forget to document your changes in CHANGES.md
:file: setup.py
:authors: Blue Yonder GmbH
:date: 2014/02/11
"""
from setuptools import setup
import os
## Get long_description from README.md:
here = os.path.dirname(os.path.abspath(__file__))
long_description = ''
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read().strip()
setup(
name='sqlalchemy_exasol',
setup_requires=["setuptools_scm"],
license='License :: OSI Approved :: BSD License',
url='https://github.com/blue-yonder/sqlalchemy_exasol',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Database'
],
description='EXASOL dialect for SQLAlchemy',
long_description=long_description,
author='Blue Yonder GmbH',
packages=['sqlalchemy_exasol'],
install_requires=["SQLAlchemy>=1.0.4, <2", "pyodbc>=3.0.6", "six>=1.5"],
extras_require={'turbodbc': ['turbodbc>=1.1.0']},
tests_require=['pytest', 'mock>=1.0.1'],
test_suite='pytest.main',
use_scm_version={"write_to": "sqlalchemy_exasol/_version.py"},
entry_points={
'sqlalchemy.dialects': ['exa.pyodbc = sqlalchemy_exasol.pyodbc:EXADialect_pyodbc',
'exa.turbodbc = sqlalchemy_exasol.turbodbc:EXADialect_turbodbc']
},
)