Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Unified Diff: setup.py

Issue 1451373002: Updating mozdownload (excluding tests) (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/mozdownload@master
Patch Set: Updated README.md Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « setup.cfg ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
+ '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
""",
)
« no previous file with comments | « setup.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698