summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-09-26 06:42:53 +0000
committerChris McDonough <chrism@agendaless.com>2008-09-26 06:42:53 +0000
commit01a6e567a20096f6033cc603667f4e900d2a44c3 (patch)
treea87431383a63dbafbb5cccdfa7679b9187bdfc29 /setup.py
parent26216e5526ca56d886d2348f9e1f09b86622aa72 (diff)
downloadpyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.tar.gz
pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.tar.bz2
pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.zip
Move to Chameleon.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py44
1 files changed, 18 insertions, 26 deletions
diff --git a/setup.py b/setup.py
index 6ee7cbb8e..3aa1aa78f 100644
--- a/setup.py
+++ b/setup.py
@@ -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]