-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite the Drill DB-API implementation using ijson. (#69)
- Loading branch information
Showing
6 changed files
with
532 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
long_description = f.read() | ||
|
||
setup(name='sqlalchemy_drill', | ||
version='1.0.0', | ||
version='1.1.0', | ||
description="Apache Drill for SQLAlchemy", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
@@ -49,20 +49,22 @@ | |
], | ||
install_requires=[ | ||
"requests", | ||
"numpy", | ||
"pandas", | ||
"ijson", | ||
"sqlalchemy" | ||
], | ||
extras_require={ | ||
"jdbc": ["JPype1", "JayDeBeApi"], | ||
"odbc": ["pyodbc"], | ||
}, | ||
keywords='SQLAlchemy Apache Drill', | ||
author='John Omernik, Charles Givre, Davide Miceli, Massimo Martiradonna', | ||
author_email='[email protected], [email protected], [email protected], [email protected]', | ||
author='John Omernik, Charles Givre, Davide Miceli, Massimo Martiradonna' | ||
', James Turton', | ||
author_email='[email protected], [email protected], davide.miceli.dap' | ||
'@gmail.com, [email protected], [email protected]', | ||
license='MIT', | ||
url = 'https://github.com/JohnOmernik/sqlalchemy-drill', | ||
download_url = 'https://github.com/JohnOmernik/sqlalchemy-drill/archive/1.0.0.tar.gz', | ||
url='https://github.com/JohnOmernik/sqlalchemy-drill', | ||
download_url='https://github.com/JohnOmernik/sqlalchemy-drill/archive/' | ||
'1.1.0.tar.gz', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
tests_require=['nose >= 0.11'], | ||
|
@@ -76,4 +78,4 @@ | |
'drill.odbc = sqlalchemy_drill.odbc:DrillDialect_odbc', | ||
] | ||
} | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.