[Repoze-checkins] r602 - in repoze.trac/trunk: . repoze/trac

Chris McDonough chrism at agendaless.com
Wed Dec 5 16:43:50 UTC 2007


Author: Chris McDonough <chrism at agendaless.com>
Date: Wed Dec  5 16:43:50 2007
New Revision: 602

Log:
Rely on PasteScript and define here.


Modified:
   repoze.trac/trunk/repoze/trac/__init__.py
   repoze.trac/trunk/setup.py

Modified: repoze.trac/trunk/repoze/trac/__init__.py
==============================================================================
--- repoze.trac/trunk/repoze/trac/__init__.py	(original)
+++ repoze.trac/trunk/repoze/trac/__init__.py	Wed Dec  5 16:43:50 2007
@@ -18,6 +18,8 @@
         raise ValueError('"path=" required for make_trac setup')
     return TracApp(path)
 
+here = os.path.abspath(os.path.dirname(__file__))
+
 # I would use string.Template, but it's just too hard to change it to
 # respect only ${brace} syntax instead of both that and $name syntax.
 TOKEN_RE = re.compile(r'\$\{([\.\w/-]+)\}')

Modified: repoze.trac/trunk/setup.py
==============================================================================
--- repoze.trac/trunk/setup.py	(original)
+++ repoze.trac/trunk/setup.py	Wed Dec  5 16:43:50 2007
@@ -48,7 +48,7 @@
       namespace_packages=['repoze'],
       zip_safe=False,
       tests_require = [],
-      install_requires=['trac', 'pysqlite'],
+      install_requires=['trac', 'pysqlite', 'PasteScript'],
       #test_suite="repoze.",
       entry_points = """\
         [repoze.project]


More information about the Repoze-checkins mailing list