Mercurial > mozilla > hg > talosnames
comparison setup.py @ 46:fcd98303a90d
provide CLI handler for web
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 13 Aug 2012 15:14:53 -0700 |
parents | 1713b3e244a7 |
children | 11249e75ced6 |
comparison
equal
deleted
inserted
replaced
45:c1cbb79a6aaf | 46:fcd98303a90d |
---|---|
12 try: | 12 try: |
13 from setuptools import setup | 13 from setuptools import setup |
14 kw['entry_points'] = """ | 14 kw['entry_points'] = """ |
15 [console_scripts] | 15 [console_scripts] |
16 talos-names = talosnames.main:main | 16 talos-names = talosnames.main:main |
17 talos-names-web = talosnames.web:main | |
17 """ | 18 """ |
18 kw['install_requires'] = dependencies | 19 kw['install_requires'] = dependencies |
19 kw['dependency_links'] = ['http://hg.mozilla.org/build/talos/archive/tip.tar.gz#egg=talos'] | 20 kw['dependency_links'] = ['http://hg.mozilla.org/build/talos/archive/tip.tar.gz#egg=talos'] |
20 except ImportError: | 21 except ImportError: |
21 from distutils.core import setup | 22 from distutils.core import setup |