Mercurial > mozilla > hg > talosnames
comparison setup.py @ 47:11249e75ced6
allow more than one template path
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 13 Aug 2012 15:41:32 -0700 |
parents | fcd98303a90d |
children | 0f5c22c07146 |
comparison
equal
deleted
inserted
replaced
46:fcd98303a90d | 47:11249e75ced6 |
---|---|
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'] |
9 | |
10 try: | |
11 import json | |
12 except ImportError: | |
13 dependencies.append('simplejson') | |
9 | 14 |
10 # allow use of setuptools/distribute or distutils | 15 # allow use of setuptools/distribute or distutils |
11 kw = {} | 16 kw = {} |
12 try: | 17 try: |
13 from setuptools import setup | 18 from setuptools import setup |