Mercurial > mozilla > hg > talosnames
comparison setup.py @ 66:0f5c22c07146
add interface for paste since wsgiref falls over in production
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 20 Aug 2012 09:49:18 -0700 |
parents | 11249e75ced6 |
children |
comparison
equal
deleted
inserted
replaced
65:22c35af93ef8 | 66:0f5c22c07146 |
---|---|
3 """ | 3 """ |
4 | 4 |
5 import os | 5 import os |
6 | 6 |
7 version = "0.0" | 7 version = "0.0" |
8 dependencies = ['webob', 'CommandParser', 'talos', 'buildbot', 'PyYAML'] | 8 dependencies = ['webob', 'CommandParser', 'talos', 'buildbot', 'PyYAML', 'PasteScript'] |
9 | 9 |
10 try: | 10 try: |
11 import json | 11 import json |
12 except ImportError: | 12 except ImportError: |
13 dependencies.append('simplejson') | 13 dependencies.append('simplejson') |
40 long_description=description, | 40 long_description=description, |
41 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 41 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
42 author='Jeff Hammel', | 42 author='Jeff Hammel', |
43 author_email='jhammel@mozilla.com', | 43 author_email='jhammel@mozilla.com', |
44 url='', | 44 url='', |
45 license='', | 45 license='MPL', |
46 packages=['talosnames'], | 46 packages=['talosnames'], |
47 include_package_data=True, | 47 include_package_data=True, |
48 zip_safe=False, | 48 zip_safe=False, |
49 **kw | 49 **kw |
50 ) | 50 ) |