Mercurial > hg > buttercup
annotate setup.py @ 3:f207357d7ca9
remove bad keywords
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 29 Mar 2010 11:31:14 -0700 |
parents | 9661071dac87 |
children | 9a37a94fed68 |
rev | line source |
---|---|
0
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
1 from setuptools import find_packages, setup |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
2 |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
3 version='0.0' |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
4 |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
5 setup(name='buttercup', |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
6 version=version, |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
7 description="paste template for creating instances of the buttercup flower website pattern", |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
8 author='Jeff Hammel', |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
9 author_email='k0scist@gmail.com', |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
10 url='http://k0s.org', |
3 | 11 keywords='', |
12 license="GPL", | |
0
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
13 packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']), |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
14 include_package_data=True, |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
15 install_requires = [ 'PasteScript' ], |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
16 zip_safe=False, |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
17 entry_points = """ |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
18 [paste.paster_create_template] |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
19 buttercup = buttercup:buttercup |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
20 """, |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
21 ) |
9661071dac87
initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
22 |