Mercurial > hg > decoupage
comparison setup.py @ 58:1275124ed767
depend on py2rssgen; not hooked up yet
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 18 Nov 2010 08:36:07 -0800 |
parents | ac693b8df32c |
children | 07cf168aa98c |
comparison
equal
deleted
inserted
replaced
57:884e6c805208 | 58:1275124ed767 |
---|---|
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.9' | 9 version = '0.9.1' |
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, |
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
21 include_package_data=True, | 21 include_package_data=True, |
22 zip_safe=False, | 22 zip_safe=False, |
23 install_requires=[ | 23 install_requires=[ |
24 # -*- Extra requirements: -*- | 24 # -*- Extra requirements: -*- |
25 'WebOb', | 25 'WebOb', |
26 'Paste', | 26 'Paste', |
27 'PasteScript', | 27 'PasteScript', |
28 'genshi', | 28 'genshi', |
29 'martINI', | 29 'martINI', |
30 'contenttransformer', | 30 'contenttransformer', |
31 'PyRSS2Gen', | |
31 ], | 32 ], |
33 dependency_links=['http://www.dalkescientific.com/Python/PyRSS2Gen-1.0.0.tar.gz#egg=PyRSS2Gen'], | |
32 entry_points=""" | 34 entry_points=""" |
33 # -*- Entry points: -*- | 35 # -*- Entry points: -*- |
34 [console_scripts] | 36 [console_scripts] |
35 decoupage-templates = decoupage.templates:main | 37 decoupage-templates = decoupage.templates:main |
36 decoupage-formatters = decoupage.formatters:main | 38 decoupage-formatters = decoupage.formatters:main |