Skip to content

Commit

Permalink
Apply minor fix to setup.py; update README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
gordthompson committed May 12, 2020
1 parent 6966201 commit 8eb29be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sqlalchemy-sybase
.. image:: https://img.shields.io/pypi/dm/sqlalchemy-sybase.svg
:target: https://pypi.org/project/sqlalchemy-sybase/

A SAP ASE (Sybase) dialect for SQLAlchemy.
SAP ASE (Sybase) support for SQLAlchemy.

Objectives
----------
Expand Down Expand Up @@ -61,7 +61,7 @@ For other ways of connecting see the `Getting Connected`_ page in the Wiki.
The SQLAlchemy Project
======================

SQLAlchemy-sybase is affiliated with the `SQLAlchemy Project <https://www.sqlalchemy.org>`_ and
sqlalchemy-sybase is affiliated with the `SQLAlchemy Project <https://www.sqlalchemy.org>`_ and
adheres to the same standards and conventions as the core project.

Development / Bug reporting / Pull requests
Expand All @@ -82,5 +82,5 @@ Please see the current Code of Conduct at
License
=======

SQLAlchemy-sybase is distributed under the `MIT license
sqlalchemy-sybase is distributed under the `MIT license
<https://opensource.org/licenses/MIT>`_.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
setup(
name="sqlalchemy-sybase",
version=VERSION,
description="Sybase for SQLAlchemy",
description="SAP ASE (Sybase) for SQLAlchemy",
long_description=open(readme).read(),
url="https://github.com/gordthompson/sqlalchemy-sybase",
author="Gord Thompson",
Expand All @@ -35,15 +35,15 @@
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent",
],
keywords="SQLAlchemy Microsoft Sybase",
keywords="ASE SAP SQLAlchemy Sybase",
project_urls={
"Documentation": "https://github.com/gordthompson/sqlalchemy-sybase/wiki",
"Source": "https://github.com/gordthompson/sqlalchemy-sybase",
"Tracker": "https://github.com/gordthompson/sqlalchemy-sybase/issues",
},
packages=find_packages(include=["sqlalchemy_sybase"]),
include_package_data=True,
install_requires=["SQLAlchemy>=1.3.16", "pyodbc"],
install_requires=["SQLAlchemy>1.3.16", "pyodbc"],
zip_safe=False,
entry_points={
"sqlalchemy.dialects": [
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_sybase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from .base import VARBINARY
from .base import VARCHAR

__version__ = "1.0.0b1"
__version__ = "1.0.0b2"

# default (and only) dialect
base.dialect = dialect = pyodbc.dialect
Expand Down

0 comments on commit 8eb29be

Please sign in to comment.