Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update maintainer information #6

Merged
merged 12 commits into from
Feb 20, 2020
8 changes: 6 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ sqlalchemy-vertica-python

Vertica dialect for sqlalchemy. Forked from the `Vertica ODBC dialect <https://pypi.python.org/pypi/vertica-sqlalchemy>`_.

This module implements a Vertica dialect for SQLAlchemy using `vertica-python <https://github.com/uber/vertica-python>`_. Engine creation:
This module implements a Vertica dialect for SQLAlchemy using `vertica-python <https://github.com/uber/vertica-python>`_

This code was written by `Luke Emery-Fertitta <https://github.com/lemeryfertitta>`_. It is currently maintained by `BlueLabs <https://bluelabs.com/>`_ - PRs are welcome!

Engine creation:

.. code-block:: python

Expand All @@ -19,7 +23,7 @@ From PyPI: ::

From git: ::

git clone https://github.com/LocusEnergy/vertica-sqlalchemy
git clone https://github.com/bluelabsio/vertica-sqlalchemy
cd vertica-sqlalchemy
python setup.py install

Expand Down
2 changes: 1 addition & 1 deletion metrics/bigfiles_high_water_mark
Original file line number Diff line number Diff line change
@@ -1 +1 @@
503
504
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
from setuptools import setup
from setuputils import TestCoverageRatchetCommand, VerifyVersionCommand

__version__ = '0.5.4'
__version__ = '0.5.5'
setup(
name='sqlalchemy-vertica-python',
version=__version__,
description='Vertica dialect for sqlalchemy using vertica_python',
long_description=open("README.rst").read(),
license="MIT",
url='https://github.com/LocusEnergy/sqlalchemy-vertica-python',
download_url = 'https://github.com/LocusEnergy/sqlalchemy-vertica-python/tarball/{}'.format(__version__),
author='Locus Energy',
author_email='dbio@locusenergy.com',
url='https://github.com/bluelabsio/sqlalchemy-vertica-python',
download_url = 'https://github.com/bluelabsio/sqlalchemy-vertica-python/tarball/{}'.format(__version__),
author='Luke Emery-Fertitta',
author_email='opensource@bluelabs.com',
packages=[
'sqla_vertica_python',
],
Expand Down