comparison setup.py @ 41:38aa1d47c461

add a source
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 25 Nov 2011 17:36:33 -0800
parents 86c3c0d4d434
children af4155b0a260
comparison
equal deleted inserted replaced
40:4ea66cb5485d 41:38aa1d47c461
3 try: 3 try:
4 description = file("README.txt").read() 4 description = file("README.txt").read()
5 except: 5 except:
6 description = '' 6 description = ''
7 7
8 version='0.2' 8 version='0.2.1'
9 9
10 setup(name='buttercup', 10 setup(name='buttercup',
11 version=version, 11 version=version,
12 description="paste template for creating instances of the buttercup flower website pattern", 12 description="paste template for creating instances of the buttercup flower website pattern",
13 long_description=description, 13 long_description=description,
21 install_requires = [ 'PasteScript' ], 21 install_requires = [ 'PasteScript' ],
22 zip_safe=False, 22 zip_safe=False,
23 entry_points = """ 23 entry_points = """
24 [console_scripts] 24 [console_scripts]
25 buttercup = buttercup.checkout:main 25 buttercup = buttercup.checkout:main
26 26
27 [paste.paster_create_template] 27 [paste.paster_create_template]
28 buttercup = buttercup:buttercup 28 buttercup = buttercup:buttercup
29 """, 29 """,
30 ) 30 )
31 31