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

Side by Side Diff: third_party/mozdownload/setup.py

Issue 108313011: Adding mozilla libraries required by Firefox interop test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/mozdownload/setup.cfg ('k') | third_party/mozinfo/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 # You can obtain one at http://mozilla.org/MPL/2.0/.
6
7
8 import os
9 from setuptools import setup, find_packages
10
11 try:
12 here = os.path.dirname(os.path.abspath(__file__))
13 description = file(os.path.join(here, 'README.md')).read()
14 except (OSError, IOError):
15 description = None
16
17 version = '1.6'
18
19 deps = ['mozinfo==0.3.3']
20
21 setup(name='mozdownload',
22 version=version,
23 description='Script to download builds for Firefox and Thunderbird from th e Mozilla server.',
24 long_description=description,
25 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
26 classifiers=[],
27 keywords='mozilla',
28 author='Mozilla Automation and Testing Team',
29 author_email='tools@lists.mozilla.com',
30 url='http://github.com/mozilla/mozdownload',
31 license='Mozilla Public License 2.0 (MPL 2.0)',
32 packages = ['mozdownload'],
33 zip_safe=False,
34 install_requires=deps,
35 entry_points="""
36 # -*- Entry points: -*-
37 [console_scripts]
38 mozdownload = mozdownload:cli
39 """,
40 )
OLDNEW
« no previous file with comments | « third_party/mozdownload/setup.cfg ('k') | third_party/mozinfo/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698