Changeset - ed2448698af0
[Not reviewed]
0 1 0
Lance Edgar - 11 years ago 2013-10-23 12:50:57
ledgar@sacfoodcoop.com
Added project URL.
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
@@ -52,48 +52,49 @@ requires = [
 
    # indicated by a true version requirement.)
 
    #
 
    # Similarly, if a 'high' version is present, and especially if this
 
    # project has laid dormant for a while, you may need to refactor a bit
 
    # when attempting to support a more recent version of the package.  (A
 
    # "hard" low limit should be indicated by a true version requirement
 
    # when a 'high' version is present.)
 
    #
 
    # In any case, developers and other users are encouraged to play
 
    # outside the lines with regard to these soft limits.  If bugs are
 
    # encountered then they should be filed as such.
 
    #
 
    # package                           # low                   high
 

	
 
    'pyodbc',                           # 2.1.11
 
    'SQLAlchemy',                       # 0.8.2
 
    ]
 

	
 

	
 
setup(
 
    name = "sqlalchemy-pervasive",
 
    version = __version__,
 
    author = "Sacramento Natural Foods Co-op, Inc",
 
    author_email = "developer@sacfoodcoop.com",
 
    url = 'https://github.com/SacNaturalFoods/sqlalchemy-pervasive',
 
    license = "GNU GPL v3",
 
    description = "SQLAlchemy Dialect for Pervasive PSQL",
 
    long_description = README + '\n\n' +  CHANGES,
 

	
 
    classifiers = [
 
        'Development Status :: 3 - Alpha',
 
        'Intended Audience :: Developers',
 
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
 
        'Natural Language :: English',
 
        'Operating System :: OS Independent',
 
        'Programming Language :: Python',
 
        'Programming Language :: Python :: 2.6',
 
        'Programming Language :: Python :: 2.7',
 
        'Topic :: Software Development :: Libraries :: Python Modules',
 
        ],
 

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

	
 
    entry_points = """
 

	
 
[sqlalchemy.dialects]
 
pervasive = sqlalchemy_pervasive.pyodbc:PervasiveDialect_pyodbc
0 comments (0 inline, 0 general)