OLD | NEW |
(Empty) | |
| 1 # This Source Code Form is subject to the terms of the Mozilla Public |
| 2 # License, v. 2.0. If a copy of the MPL was not distributed with this file, |
| 3 # You can obtain one at http://mozilla.org/MPL/2.0/. |
| 4 |
| 5 from setuptools import setup |
| 6 import sys |
| 7 import os |
| 8 |
| 9 here = os.path.dirname(os.path.abspath(__file__)) |
| 10 try: |
| 11 filename = os.path.join(here, 'README.md') |
| 12 description = file(filename).read() |
| 13 except: |
| 14 description = '' |
| 15 |
| 16 PACKAGE_NAME = "ManifestDestiny" |
| 17 PACKAGE_VERSION = '0.5.6' |
| 18 |
| 19 setup(name=PACKAGE_NAME, |
| 20 version=PACKAGE_VERSION, |
| 21 description="Universal manifests for Mozilla test harnesses", |
| 22 long_description=description, |
| 23 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=l
ist_classifiers |
| 24 keywords='mozilla manifests', |
| 25 author='Mozilla Automation and Testing Team', |
| 26 author_email='tools@lists.mozilla.org', |
| 27 url='https://wiki.mozilla.org/Auto-tools/Projects/MozBase', |
| 28 license='MPL', |
| 29 zip_safe=False, |
| 30 packages=['manifestparser'], |
| 31 install_requires=[], |
| 32 entry_points=""" |
| 33 [console_scripts] |
| 34 manifestparser = manifestparser.manifestparser:main |
| 35 """, |
| 36 ) |
OLD | NEW |