comparison setup.py @ 0:fa2005f769eb

adding decoupage from http://my-svn.assembla.com/svn/arbez/decoupage r355
author k0s <k0scist@gmail.com>
date Mon, 07 Sep 2009 13:40:22 -0400
parents
children 041958c8c8f2
comparison
equal deleted inserted replaced
-1:000000000000 0:fa2005f769eb
1 from setuptools import setup, find_packages
2 import sys, os
3
4 try:
5 description = file("README.txt").read()
6 except IOError:
7 description = ''
8
9 version = '0.1.4'
10
11 setup(name='decoupage',
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 ...",
14 long_description=description,
15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
16 author='Jeff Hammel',
17 author_email='k0scist@gmail.com',
18 url='http://explosivedecompression.net',
19 license="",
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
21 include_package_data=True,
22 zip_safe=False,
23 install_requires=[
24 # -*- Extra requirements: -*-
25 'WebOb',
26 'Paste',
27 'PasteScript',
28 'genshi',
29 'martINI',
30 ],
31 find_links=[
32 'https://svn.openplans.org/svn/standalone/martINI#egg=martINI',
33 ],
34 entry_points="""
35 # -*- Entry points: -*-
36 [paste.app_factory]
37 main = decoupage.factory:factory
38
39 [decoupage.formatters]
40 ignore = decoupage.formatters:Ignore
41 all = decoupage.formatters:All
42 describe = decoupage.formatters:FilenameDescription
43 title = decoupage.formatters:TitleDescription
44 """,
45 )
46