Mercurial > hg > decoupage
comparison setup.py @ 33:e384d4569ac3
include components necessary to make decoupage feel almost like a framework
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 08 Feb 2010 11:40:57 -0500 |
parents | 983c13e1b71f |
children | 20e3d138dc98 |
comparison
equal
deleted
inserted
replaced
32:983c13e1b71f | 33:e384d4569ac3 |
---|---|
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.5.2' | 9 version = '0.6' |
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, |
40 | 40 |
41 [decoupage.formatters] | 41 [decoupage.formatters] |
42 all = decoupage.formatters:All | 42 all = decoupage.formatters:All |
43 css = decoupage.formatters:CSS | 43 css = decoupage.formatters:CSS |
44 describe = decoupage.formatters:FilenameDescription | 44 describe = decoupage.formatters:FilenameDescription |
45 icon = decoupage.formatters:Favicon | |
45 ignore = decoupage.formatters:Ignore | 46 ignore = decoupage.formatters:Ignore |
46 include = decoupage.formatters:Include | 47 include = decoupage.formatters:Include |
47 links = decoupage.formatters:Links | 48 links = decoupage.formatters:Links |
49 scripts = decoupage.formatter:JavaScript | |
50 sort = decoupage.formatters:Sort | |
48 title = decoupage.formatters:TitleDescription | 51 title = decoupage.formatters:TitleDescription |
49 sort = decoupage.formatters:Sort | |
50 """, | 52 """, |
51 ) | 53 ) |
52 | 54 |