From 2cffcc8d195c1e6ca849cf749ce6c2bd3228f7dd Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 21 Apr 2010 11:15:34 -0500 Subject: [PATCH] Renamed project to sqlbase7_sa. --- .hgignore | 2 +- setup.py | 14 +++++++------- {sqlbase7 => sqlbase7_sa}/__init__.py | 10 +++++----- {sqlbase7 => sqlbase7_sa}/_version.py | 10 +++++----- {sqlbase7 => sqlbase7_sa}/base.py | 10 +++++----- {sqlbase7 => sqlbase7_sa}/pyodbc.py | 10 +++++----- {sqlbase7 => sqlbase7_sa}/tests/__init__.py | 10 +++++----- 7 files changed, 33 insertions(+), 33 deletions(-) rename {sqlbase7 => sqlbase7_sa}/__init__.py (70%) rename {sqlbase7 => sqlbase7_sa}/_version.py (67%) rename {sqlbase7 => sqlbase7_sa}/base.py (94%) rename {sqlbase7 => sqlbase7_sa}/pyodbc.py (76%) rename {sqlbase7 => sqlbase7_sa}/tests/__init__.py (80%) diff --git a/.hgignore b/.hgignore index 1577357..8187028 100644 --- a/.hgignore +++ b/.hgignore @@ -1,4 +1,4 @@ -PySQLBase7\.egg-info +SQLBase7_SA\.egg-info .*\.pyc build dist diff --git a/setup.py b/setup.py index fd761b5..7ebc1a5 100644 --- a/setup.py +++ b/setup.py @@ -2,23 +2,23 @@ # -*- coding: utf-8 -*- ################################################################################ # -# PySQLBase7 -- SQLAlchemy driver/dialect for Centura SQLBase v7 +# SQLBase7_SA -- SQLAlchemy driver/dialect for Centura SQLBase v7 # Copyright © 2010 Lance Edgar # -# This file is part of PySQLBase7. +# This file is part of SQLBase7_SA. # -# PySQLBase7 is free software: you can redistribute it and/or modify +# SQLBase7_SA is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# PySQLBase7 is distributed in the hope that it will be useful, +# SQLBase7_SA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PySQLBase7. If not, see . +# along with SQLBase7_SA. If not, see . # ################################################################################ @@ -27,11 +27,11 @@ from setuptools import setup, find_packages import os -execfile(os.path.join(os.path.dirname(__file__), 'sqlbase7', '_version.py')) +execfile(os.path.join(os.path.dirname(__file__), 'sqlbase7_sa', '_version.py')) setup( - name = 'PySQLBase7', + name = 'SQLBase7_SA', version = __version__, description = 'SQLAlchemy driver/dialect for Centura SQLBase v7', author = 'Lance Edgar', diff --git a/sqlbase7/__init__.py b/sqlbase7_sa/__init__.py similarity index 70% rename from sqlbase7/__init__.py rename to sqlbase7_sa/__init__.py index f9bd580..37937f2 100644 --- a/sqlbase7/__init__.py +++ b/sqlbase7_sa/__init__.py @@ -2,23 +2,23 @@ # -*- coding: utf-8 -*- ################################################################################ # -# PySQLBase7 -- SQLAlchemy driver/dialect for Centura SQLBase v7 +# SQLBase7_SA -- SQLAlchemy driver/dialect for Centura SQLBase v7 # Copyright © 2010 Lance Edgar # -# This file is part of PySQLBase7. +# This file is part of SQLBase7_SA. # -# PySQLBase7 is free software: you can redistribute it and/or modify +# SQLBase7_SA is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# PySQLBase7 is distributed in the hope that it will be useful, +# SQLBase7_SA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PySQLBase7. If not, see . +# along with SQLBase7_SA. If not, see . # ################################################################################ diff --git a/sqlbase7/_version.py b/sqlbase7_sa/_version.py similarity index 67% rename from sqlbase7/_version.py rename to sqlbase7_sa/_version.py index d2067c9..2020b60 100644 --- a/sqlbase7/_version.py +++ b/sqlbase7_sa/_version.py @@ -2,23 +2,23 @@ # -*- coding: utf-8 -*- ################################################################################ # -# PySQLBase7 -- SQLAlchemy driver/dialect for Centura SQLBase v7 +# SQLBase7_SA -- SQLAlchemy driver/dialect for Centura SQLBase v7 # Copyright © 2010 Lance Edgar # -# This file is part of PySQLBase7. +# This file is part of SQLBase7_SA. # -# PySQLBase7 is free software: you can redistribute it and/or modify +# SQLBase7_SA is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# PySQLBase7 is distributed in the hope that it will be useful, +# SQLBase7_SA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PySQLBase7. If not, see . +# along with SQLBase7_SA. If not, see . # ################################################################################ diff --git a/sqlbase7/base.py b/sqlbase7_sa/base.py similarity index 94% rename from sqlbase7/base.py rename to sqlbase7_sa/base.py index 054a479..ec35e9d 100644 --- a/sqlbase7/base.py +++ b/sqlbase7_sa/base.py @@ -2,23 +2,23 @@ # -*- coding: utf-8 -*- ################################################################################ # -# PySQLBase7 -- SQLAlchemy driver/dialect for Centura SQLBase v7 +# SQLBase7_SA -- SQLAlchemy driver/dialect for Centura SQLBase v7 # Copyright © 2010 Lance Edgar # -# This file is part of PySQLBase7. +# This file is part of SQLBase7_SA. # -# PySQLBase7 is free software: you can redistribute it and/or modify +# SQLBase7_SA is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# PySQLBase7 is distributed in the hope that it will be useful, +# SQLBase7_SA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PySQLBase7. If not, see . +# along with SQLBase7_SA. If not, see . # ################################################################################ diff --git a/sqlbase7/pyodbc.py b/sqlbase7_sa/pyodbc.py similarity index 76% rename from sqlbase7/pyodbc.py rename to sqlbase7_sa/pyodbc.py index 33a9865..01bf773 100644 --- a/sqlbase7/pyodbc.py +++ b/sqlbase7_sa/pyodbc.py @@ -2,23 +2,23 @@ # -*- coding: utf-8 -*- ################################################################################ # -# PySQLBase7 -- SQLAlchemy driver/dialect for Centura SQLBase v7 +# SQLBase7_SA -- SQLAlchemy driver/dialect for Centura SQLBase v7 # Copyright © 2010 Lance Edgar # -# This file is part of PySQLBase7. +# This file is part of SQLBase7_SA. # -# PySQLBase7 is free software: you can redistribute it and/or modify +# SQLBase7_SA is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# PySQLBase7 is distributed in the hope that it will be useful, +# SQLBase7_SA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PySQLBase7. If not, see . +# along with SQLBase7_SA. If not, see . # ################################################################################ diff --git a/sqlbase7/tests/__init__.py b/sqlbase7_sa/tests/__init__.py similarity index 80% rename from sqlbase7/tests/__init__.py rename to sqlbase7_sa/tests/__init__.py index ed79bc5..f6ef02f 100644 --- a/sqlbase7/tests/__init__.py +++ b/sqlbase7_sa/tests/__init__.py @@ -2,23 +2,23 @@ # -*- coding: utf-8 -*- ################################################################################ # -# PySQLBase7 -- SQLAlchemy driver/dialect for Centura SQLBase v7 +# SQLBase7_SA -- SQLAlchemy driver/dialect for Centura SQLBase v7 # Copyright © 2010 Lance Edgar # -# This file is part of PySQLBase7. +# This file is part of SQLBase7_SA. # -# PySQLBase7 is free software: you can redistribute it and/or modify +# SQLBase7_SA is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# PySQLBase7 is distributed in the hope that it will be useful, +# SQLBase7_SA is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PySQLBase7. If not, see . +# along with SQLBase7_SA. If not, see . # ################################################################################