Chromium Code Reviews| Index: setup.py |
| diff --git a/setup.py b/setup.py |
| index 86581265169c9be160143be0f042f09838c64db0..9492536543ec104bc2cfba7ac11ebcd66e961225 100755 |
| --- a/setup.py |
| +++ b/setup.py |
| @@ -6,7 +6,7 @@ |
| import os |
| -from setuptools import setup, find_packages |
| +from setuptools import setup |
| try: |
| here = os.path.dirname(os.path.abspath(__file__)) |
| @@ -14,13 +14,17 @@ try: |
| except (OSError, IOError): |
| description = None |
| -version = '1.6' |
| +version = '1.19' |
| -deps = ['mozinfo==0.3.3'] |
| +deps = ['mozinfo >= 0.7', |
|
kjellander_chromium
2015/11/17 10:19:29
Considering that we have mozinfo 0.4 checked in (h
|
| + 'progressbar == 2.2', |
| + 'requests == 2.7.0', |
| + ] |
| setup(name='mozdownload', |
| version=version, |
| - description='Script to download builds for Firefox and Thunderbird from the Mozilla server.', |
| + description='Script to download builds for Firefox and Thunderbird ' |
| + 'from the Mozilla server.', |
| long_description=description, |
| # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
| classifiers=[], |
| @@ -29,12 +33,12 @@ setup(name='mozdownload', |
| author_email='tools@lists.mozilla.com', |
| url='http://github.com/mozilla/mozdownload', |
| license='Mozilla Public License 2.0 (MPL 2.0)', |
| - packages = ['mozdownload'], |
| + packages=['mozdownload'], |
| zip_safe=False, |
| install_requires=deps, |
| entry_points=""" |
| # -*- Entry points: -*- |
| [console_scripts] |
| - mozdownload = mozdownload:cli |
| + mozdownload = mozdownload.cli:cli |
| """, |
| ) |