comparison setup.py @ 6:6a802c87f070

mv decoupage to the web module bc thats where it should live; increment version
author k0s <k0scist@gmail.com>
date Thu, 24 Dec 2009 22:37:38 -0500
parents 041958c8c8f2
children 16d41af2d8ef
comparison
equal deleted inserted replaced
5:076b008ae580 6:6a802c87f070
4 try: 4 try:
5 description = file("README.txt").read() 5 description = file("README.txt").read()
6 except IOError: 6 except IOError:
7 description = '' 7 description = ''
8 8
9 version = '0.2' 9 version = '0.3'
10 10
11 setup(name='decoupage', 11 setup(name='decoupage',
12 version=version, 12 version=version,
13 description="Decoupage is the art of decorating an object by gluing colored paper cutouts onto it in combination with special paint effects ...", 13 description="Decoupage is the art of decorating an object by gluing colored paper cutouts onto it in combination with special paint effects ...",
14 long_description=description, 14 long_description=description,
26 'Paste', 26 'Paste',
27 'PasteScript', 27 'PasteScript',
28 'genshi', 28 'genshi',
29 'martINI', 29 'martINI',
30 ], 30 ],
31 find_links=[
32 'https://svn.openplans.org/svn/standalone/martINI#egg=martINI',
33 ],
34 entry_points=""" 31 entry_points="""
35 # -*- Entry points: -*- 32 # -*- Entry points: -*-
36 [paste.app_factory] 33 [paste.app_factory]
37 main = decoupage.factory:factory 34 main = decoupage.factory:factory
38 35