annotate setup.py @ 0:9869cf47fcf8 default tip

initial commit of Firefox addon template
author k0s <k0scist@gmail.com>
date Sun, 28 Mar 2010 16:25:58 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
1 from setuptools import find_packages, setup
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
2
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
3 version='0.0'
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
4
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
5 setup(name='FirefoxAddon',
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
6 version=version,
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
7 description="template for a firefox addon",
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
8 author='Jeff Hammel',
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
9 author_email='jhammel@mozilla.com',
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
10 url='',
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
11 keywords='trac plugin',
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
12 license="",
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
13 packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']),
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
14 include_package_data=True,
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
15 install_requires = [ 'PasteScript' ],
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
16 zip_safe=False,
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
17 entry_points = """
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
18 [paste.paster_create_template]
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
19 firefoxaddon = firefoxaddon:FirefoxAddon
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
20 """,
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
21 )
9869cf47fcf8 initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff changeset
22