-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
50 lines (43 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'sqlalchemy>=1.3.24',
'pyarrow>=5.0.0'
]
setup_requirements = [
]
test_requirements = [
]
setup(
name='sqlalchemy_dremio',
version='3.0.4',
description="A SQLAlchemy dialect for Dremio via the Flight interface.",
long_description=readme,
long_description_content_type='text/markdown',
author="Naren",
author_email='[email protected]',
url='https://github.com/narendrans/sqlalchemy_dremio',
packages=find_packages(include=['sqlalchemy_dremio']),
entry_points={
'sqlalchemy.dialects': [
'dremio.flight = sqlalchemy_dremio.flight:DremioDialect_flight',
]
},
include_package_data=True,
install_requires=requirements,
license="Apache Software License",
zip_safe=False,
keywords='sqlalchemy_dremio',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7'
]
)