Mercurial > hg > decoupage
comparison setup.py @ 49:ac693b8df32c
add idea of formats and json format
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 03 Nov 2010 08:18:50 -0700 |
parents | 0cfb84d788d6 |
children | 1275124ed767 |
comparison
equal
deleted
inserted
replaced
48:af73a3fda723 | 49:ac693b8df32c |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | 2 |
3 # use README as long_description | |
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.8' | 9 version = '0.9' |
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, |
36 decoupage-formatters = decoupage.formatters:main | 36 decoupage-formatters = decoupage.formatters:main |
37 | 37 |
38 [paste.app_factory] | 38 [paste.app_factory] |
39 main = decoupage.factory:factory | 39 main = decoupage.factory:factory |
40 | 40 |
41 [decoupage.formats] | |
42 json = decoupage.formats:format_json | |
43 | |
41 [decoupage.formatters] | 44 [decoupage.formatters] |
42 all = decoupage.formatters:All | 45 all = decoupage.formatters:All |
43 css = decoupage.formatters:CSS | 46 css = decoupage.formatters:CSS |
44 describe = decoupage.formatters:FilenameDescription | 47 describe = decoupage.formatters:FilenameDescription |
45 icon = decoupage.formatters:Favicon | 48 icon = decoupage.formatters:Favicon |