annotate buttercup/template/setup.py @ 1:a11f1a148af0

add clwapp to deps; should also peg to anagram, but thats not a package yet
author k0s <k0scist@gmail.com>
date Fri, 26 Feb 2010 15:28:12 -0500
parents 9661071dac87
children e6e80bf0476f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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=${repr(project)},
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="instance 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',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
11 keywords='',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
12 license="",
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 = [
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
16 'PasteScript',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
17 'decoupage',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
18 'contenttransformer',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
19 'montage',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
20 'cropresize',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
21 'hgpaste',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
22 'wordstream',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
23 'bitsyblog',
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
24 'bitsyauth',
1
a11f1a148af0 add clwapp to deps; should also peg to anagram, but thats not a package yet
k0s <k0scist@gmail.com>
parents: 0
diff changeset
25 'clwapp',
0
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
26 ],
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
27 zip_safe=False,
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
28 entry_points = """
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
29 [paste.paster_create_template]
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
30 buttercup = buttercup:buttercup
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
31 """,
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
32 )
9661071dac87 initial commit of the buttercup flower; just a stub
k0s <k0scist@gmail.com>
parents:
diff changeset
33