############################################################################## # # Copyright (c) 2007 Agendaless Consulting and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the BSD-like license at # http://www.repoze.org/LICENSE.txt. A copy of the license should accompany # this distribution. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL # EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, # THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND # FITNESS FOR A PARTICULAR PURPOSE # ############################################################################## __version__ = '0.0.4' from ez_setup import use_setuptools use_setuptools() import os from setuptools import setup from setuptools import find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() setup(name='repoze.project', version=__version__, description='An installer helper for repoze applications', long_description=README + '\n\n' + CHANGES, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Programming Language :: Python", "Topic :: System :: Installation/Setup", ], keywords='web application server zope repoze', author="Agendaless Consulting", author_email="reopze-dev@lists.repoze.org", dependency_links=['http://dist.repoze.org'], url="http://www.repoze.org", license="BSD-derived (http://www.repoze.org/LICENSE.txt)", packages=find_packages(), include_package_data=True, namespace_packages=['repoze'], zip_safe=False, tests_require = [ ], install_requires=[ 'setuptools >= 0.6c7', 'virtualenv >= 0.9.1', ], test_suite="repoze.project.tests", entry_points = { 'console_scripts': [ 'repozeproject = repoze.project.bootstrap:main', ], }, )