Mercurial > hg > buttercup
comparison setup.py @ 0:9661071dac87
initial commit of the buttercup flower; just a stub
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 26 Feb 2010 15:53:51 +0000 |
parents | |
children | f207357d7ca9 1fa9ca23d696 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9661071dac87 |
---|---|
1 from setuptools import find_packages, setup | |
2 | |
3 version='0.0' | |
4 | |
5 setup(name='buttercup', | |
6 version=version, | |
7 description="paste template for creating instances of the buttercup flower website pattern", | |
8 author='Jeff Hammel', | |
9 author_email='k0scist@gmail.com', | |
10 url='http://k0s.org', | |
11 keywords='trac plugin', | |
12 license="", | |
13 packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']), | |
14 include_package_data=True, | |
15 install_requires = [ 'PasteScript' ], | |
16 zip_safe=False, | |
17 entry_points = """ | |
18 [paste.paster_create_template] | |
19 buttercup = buttercup:buttercup | |
20 """, | |
21 ) | |
22 |