comparison setup.py @ 35:20e3d138dc98

better way of doing up; this breaks old behaviour so incrementing version
author k0s <k0scist@gmail.com>
date Mon, 08 Feb 2010 19:21:30 -0500
parents e384d4569ac3
children 40912f3e0559
comparison
equal deleted inserted replaced
34:527ccb76d043 35:20e3d138dc98
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.6' 9 version = '0.7'
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,
47 include = decoupage.formatters:Include 47 include = decoupage.formatters:Include
48 links = decoupage.formatters:Links 48 links = decoupage.formatters:Links
49 scripts = decoupage.formatter:JavaScript 49 scripts = decoupage.formatter:JavaScript
50 sort = decoupage.formatters:Sort 50 sort = decoupage.formatters:Sort
51 title = decoupage.formatters:TitleDescription 51 title = decoupage.formatters:TitleDescription
52 up = decoupage.formatters:Up
52 """, 53 """,
53 ) 54 )
54 55