diff options
| author | Chris McDonough <chrism@agendaless.com> | 2008-09-26 06:42:53 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2008-09-26 06:42:53 +0000 |
| commit | 01a6e567a20096f6033cc603667f4e900d2a44c3 (patch) | |
| tree | a87431383a63dbafbb5cccdfa7679b9187bdfc29 /setup.py | |
| parent | 26216e5526ca56d886d2348f9e1f09b86622aa72 (diff) | |
| download | pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.tar.gz pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.tar.bz2 pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.zip | |
Move to Chameleon.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 44 |
1 files changed, 18 insertions, 26 deletions
@@ -12,7 +12,7 @@ # ############################################################################## -__version__ = '0.3.7' +__version__ = '0.3.8' import os @@ -25,6 +25,21 @@ 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() +install_requires=[ + 'zope.interface', + 'zope.component', + 'zope.testing', + 'zope.hookable', + 'zope.event', + 'WebOb', + 'PasteScript', + 'chameleon.core [lxml]', + 'chameleon.zpt', + 'chameleon.genshi', + 'Routes', + 'setuptools', + ] + setup(name='repoze.bfg', version=__version__, description='A web framework for WSGI', @@ -47,31 +62,8 @@ setup(name='repoze.bfg', include_package_data=True, namespace_packages=['repoze', 'repoze.bfg'], zip_safe=False, - install_requires=[ - 'zope.interface', - 'zope.component', - 'zope.testing', - 'zope.hookable', - 'zope.event', - 'WebOb', - 'PasteScript', - 'z3c.pt [lxml]', - 'Routes', - 'setuptools', - ], - tests_require=[ - 'zope.interface', - 'zope.component', - 'zope.testing', - 'zope.hookable', - 'zope.event', - 'WebOb', - 'z3c.pt [lxml]', - 'Paste', - 'Routes', - 'Sphinx', - 'docutils', - ], + install_requires = install_requires, + tests_require= install_requires + ['Sphinx', 'docutils'], test_suite="repoze.bfg.tests", entry_points = """\ [paste.paster_create_template] |
