from setuptools import setup, find_packages version = 0.0 setup(name='Todo_SQLObject_ZPT', version=version, description="", long_description="""\ """, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers keywords="", author="", author_email="", url="", license="", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), zip_safe=False, package_data={ # -*- package_data: -*- 'todo': ['templates/*.pt'], 'todo.web': ['static/*.*'], }, extras_require={ 'WSGIUtils': ['WSGIUtils'], 'sqlite': 'pysqlite', }, install_requires=['SQLObject>=0.7a', 'ZPTKit>=0.3a', 'PasteDeploy', 'PasteWebKit', 'PasteScript[WSGIUtils]', 'Component'] )