Mercurial > hg > FirefoxAddon
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9869cf47fcf8 |
---|---|
1 from setuptools import find_packages, setup | |
2 | |
3 version='0.0' | |
4 | |
5 setup(name='FirefoxAddon', | |
6 version=version, | |
7 description="template for a firefox addon", | |
8 author='Jeff Hammel', | |
9 author_email='jhammel@mozilla.com', | |
10 url='', | |
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 firefoxaddon = firefoxaddon:FirefoxAddon | |
20 """, | |
21 ) | |
22 |