comparison setup.py @ 70:262fb90a54b4

make template loading lenient and other fixes; bump version
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 04 Aug 2012 15:55:52 -0700
parents fdb77c57bd22
children 94298e137131
comparison
equal deleted inserted replaced
69:9fac58348520 70:262fb90a54b4
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.10.3' 9 version = '0.11'
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 ... The software decoupage lets you stitch together index pages from filesystem content", 13 description="Decoupage is the art of decorating an object by gluing colored paper cutouts onto it in combination with special paint effects ... The software decoupage lets you stitch together index pages from filesystem content",
14 long_description=description, 14 long_description=description,
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
21 include_package_data=True, 21 include_package_data=True,
22 zip_safe=False, 22 zip_safe=False,
23 install_requires=[ 23 install_requires=[
24 # -*- Extra requirements: -*- 24 # -*- Extra requirements: -*-
25 'WebOb', 25 'WebOb',
26 'Paste', 26 'Paste',
27 'PasteScript', 27 'PasteScript',
28 'genshi', 28 'genshi',
29 'martINI>=0.4', 29 'martINI>=0.4',
30 'contenttransformer>=0.3.3', 30 'contenttransformer>=0.3.3',
57 sort = decoupage.formatters:Sort 57 sort = decoupage.formatters:Sort
58 title = decoupage.formatters:TitleDescription 58 title = decoupage.formatters:TitleDescription
59 up = decoupage.formatters:Up 59 up = decoupage.formatters:Up
60 """, 60 """,
61 ) 61 )
62 62