comparison setup.py @ 19:57ca873ed9bf default tip

make this a pluggable system and start reorging infrastructure for that
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 25 May 2010 07:48:53 -0700
parents 1c5cbbde4299
children
comparison
equal deleted inserted replaced
18:3bf478cb3166 19:57ca873ed9bf
29 ], 29 ],
30 entry_points=""" 30 entry_points="""
31 # -*- Entry points: -*- 31 # -*- Entry points: -*-
32 [paste.app_factory] 32 [paste.app_factory]
33 TagInTheMiddle = TagInTheMiddle.factory:factory 33 TagInTheMiddle = TagInTheMiddle.factory:factory
34
35 [tag.engines]
36 sqlite = TagInTheMiddle.model:SQLiteTags
37 file = TagInTheMiddle.model:FileTags
34 """, 38 """,
35 ) 39 )
36 40