Mercurial > hg > decoupage
comparison setup.py @ 16:985b3a7e0e88
add formatters to include css and genshi templates
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 25 Dec 2009 18:57:56 -0500 |
parents | 4ca2530f8be1 |
children | eab191e0b9b3 |
comparison
equal
deleted
inserted
replaced
15:8923fda80bd4 | 16:985b3a7e0e88 |
---|---|
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.3.5' | 9 version = '0.4' |
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, |
36 | 36 |
37 [paste.app_factory] | 37 [paste.app_factory] |
38 main = decoupage.factory:factory | 38 main = decoupage.factory:factory |
39 | 39 |
40 [decoupage.formatters] | 40 [decoupage.formatters] |
41 all = decoupage.formatters:All | |
42 css = decoupage.formatters:CSS | |
41 ignore = decoupage.formatters:Ignore | 43 ignore = decoupage.formatters:Ignore |
42 all = decoupage.formatters:All | 44 include = decoupage.formatters:Include |
43 describe = decoupage.formatters:FilenameDescription | 45 describe = decoupage.formatters:FilenameDescription |
44 title = decoupage.formatters:TitleDescription | 46 title = decoupage.formatters:TitleDescription |
45 """, | 47 """, |
46 ) | 48 ) |
47 | 49 |