Mercurial > hg > decoupage
comparison setup.py @ 32:983c13e1b71f
included a links formatter; restructure index template
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 08 Feb 2010 11:10:54 -0500 |
parents | f306089d6def |
children | e384d4569ac3 |
comparison
equal
deleted
inserted
replaced
26:f306089d6def | 32:983c13e1b71f |
---|---|
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' | 9 version = '0.5.2' |
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, |
39 main = decoupage.factory:factory | 39 main = decoupage.factory:factory |
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 ignore = decoupage.formatters:Ignore | 45 ignore = decoupage.formatters:Ignore |
45 include = decoupage.formatters:Include | 46 include = decoupage.formatters:Include |
46 describe = decoupage.formatters:FilenameDescription | 47 links = decoupage.formatters:Links |
47 title = decoupage.formatters:TitleDescription | 48 title = decoupage.formatters:TitleDescription |
48 sort = decoupage.formatters:Sort | 49 sort = decoupage.formatters:Sort |
49 """, | 50 """, |
50 ) | 51 ) |
51 | 52 |