OLD | NEW |
(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 ) |
OLD | NEW |