Changeset - d75b969c18a9
[Not reviewed]
0 5 0
Lance Edgar - 10 years ago 2013-10-23 12:26:05
ledgar@sacfoodcoop.com
Transfer copyright to SNFC. Exclude tests package.
5 files changed with 8 insertions and 8 deletions:
0 comments (0 inline, 0 general)
fabfile.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Lance Edgar
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
#  sqlalchemy-pervasive 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
setup.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Lance Edgar
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
#  sqlalchemy-pervasive 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
 
@@ -68,14 +68,14 @@ requires = [
 
    ]
 

	
 

	
 
setup(
 
    name = "sqlalchemy-pervasive",
 
    version = __version__,
 
    author = "Lance Edgar",
 
    author_email = "lance@edbob.org",
 
    author = "Sacramento Natural Foods Co-op, Inc",
 
    author_email = "it-group@sacfoodcoop.com",
 
    license = "GNU GPL v3",
 
    description = "SQLAlchemy Dialect for Pervasive PSQL",
 
    long_description = README + '\n\n' +  CHANGES,
 

	
 
    classifiers = [
 
        'Development Status :: 3 - Alpha',
 
@@ -87,13 +87,13 @@ setup(
 
        'Programming Language :: Python :: 2.6',
 
        'Programming Language :: Python :: 2.7',
 
        'Topic :: Software Development :: Libraries :: Python Modules',
 
        ],
 

	
 
    install_requires = requires,
 
    packages = find_packages(),
 
    packages = find_packages(exclude=['tests']),
 
    include_package_data = True,
 

	
 
    entry_points = """
 

	
 
[sqlalchemy.dialects]
 
pervasive = sqlalchemy_pervasive.pyodbc:PervasiveDialect_pyodbc
sqlalchemy_pervasive/__init__.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Lance Edgar
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
#  sqlalchemy-pervasive 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
sqlalchemy_pervasive/base.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Lance Edgar
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
#  sqlalchemy-pervasive 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
sqlalchemy_pervasive/pyodbc.py
Show inline comments
 
#!/usr/bin/env python
 
# -*- coding: utf-8  -*-
 
################################################################################
 
#
 
#  sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
 
#  Copyright © 2013 Lance Edgar
 
#  Copyright © 2013 Sacramento Natural Foods Co-op, Inc
 
#
 
#  This file is part of sqlalchemy-pervasive.
 
#
 
#  sqlalchemy-pervasive 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
0 comments (0 inline, 0 general)