forked from googleapis/python-bigquery-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1 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
#!/usr/bin/env python
import io
from setuptools import setup
def readme():
with io.open("README.rst", "r", encoding="utf8") as f:
return f.read()
setup(
name="pybigquery",
version='0.5.0',
description="SQLAlchemy dialect for BigQuery",
long_description=readme(),
long_description_content_type="text/x-rst",
author="Maxim Zudilov",
author_email="[email protected]",
packages=['pybigquery'],
url="https://github.com/mxmzdlv/pybigquery",
download_url='https://github.com/mxmzdlv/pybigquery/archive/v0.4.14.tar.gz',
keywords=['bigquery', 'sqlalchemy'],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Database :: Front-Ends"
],
install_requires=[
'sqlalchemy>=1.1.9',
'google-cloud-bigquery>=1.6.0',
'future',
],
tests_require=[
'pytz'
],
entry_points={
'sqlalchemy.dialects': [
'bigquery = pybigquery.sqlalchemy_bigquery:BigQueryDialect'
]
}
)