from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='SQLObject2', version=version, description="A rewrite and update of the SQLObject object-relational mapper", long_description="""\ A rewrite and update of the SQLObject object-relational mapper. Currently only available from the `Subversion repository `_, installable with ``easy_install -m SQLObject2==dev`` """, classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Topic :: Database', ], keywords='sqlobject database wrapper orm', author='Ian Bicking', author_email='ianb@colorstudy.com', url='http://sqlobject.org/2/', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'sqlapi', ], )