mirror of
https://github.com/status-im/sqlalchemy_dremio.git
synced 2026-08-31 05:01:15 +00:00
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
#!/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.3',
|
|
description="A SQLAlchemy dialect for Dremio via the Flight interface.",
|
|
long_description=readme,
|
|
long_description_content_type='text/markdown',
|
|
author="Naren",
|
|
author_email='me@narendran.info',
|
|
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'
|
|
]
|
|
)
|