Mercurial > mozilla > hg > ReleaseTalos
comparison setup.py @ 0:642e1f903bd0
initial commit of talos, mozutils port of http://k0s.org/mozilla/talos/new-talos-zip-bug.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 22 Jan 2013 12:10:40 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:642e1f903bd0 |
---|---|
1 import os | |
2 from setuptools import setup | |
3 | |
4 try: | |
5 here = os.path.dirname(os.path.abspath(__file__)) | |
6 description = file(os.path.join(here, 'README.txt')).read() | |
7 except IOError: | |
8 description = None | |
9 | |
10 version = '0.0' | |
11 | |
12 deps = ['bzconsole', | |
13 'talostry'] | |
14 | |
15 setup(name='releasetalos', | |
16 version=version, | |
17 description="create a bug to deploy a new talos.zip", | |
18 long_description=description, | |
19 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
20 keywords='mozilla', | |
21 author='Jeff Hammel', | |
22 author_email='jhammel@mozilla.com', | |
23 url='http://k0s.org/mozilla/hg/ReleaseTalos', | |
24 license='', | |
25 py_modules=['releasetalos'], | |
26 packages=[], | |
27 include_package_data=True, | |
28 zip_safe=False, | |
29 install_requires=deps, | |
30 entry_points=""" | |
31 # -*- Entry points: -*- | |
32 [console_scripts] | |
33 releasetalos = releasetalos:main | |
34 """, | |
35 ) | |
36 |