| Index: third_party/manifestdestiny/setup.py
 | 
| ===================================================================
 | 
| --- third_party/manifestdestiny/setup.py	(revision 0)
 | 
| +++ third_party/manifestdestiny/setup.py	(revision 0)
 | 
| @@ -0,0 +1,36 @@
 | 
| +# This Source Code Form is subject to the terms of the Mozilla Public
 | 
| +# License, v. 2.0. If a copy of the MPL was not distributed with this file,
 | 
| +# You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
| +
 | 
| +from setuptools import setup
 | 
| +import sys
 | 
| +import os
 | 
| +
 | 
| +here = os.path.dirname(os.path.abspath(__file__))
 | 
| +try:
 | 
| +    filename = os.path.join(here, 'README.md')
 | 
| +    description = file(filename).read()
 | 
| +except:
 | 
| +    description = ''
 | 
| +
 | 
| +PACKAGE_NAME = "ManifestDestiny"
 | 
| +PACKAGE_VERSION = '0.5.6'
 | 
| +
 | 
| +setup(name=PACKAGE_NAME,
 | 
| +      version=PACKAGE_VERSION,
 | 
| +      description="Universal manifests for Mozilla test harnesses",
 | 
| +      long_description=description,
 | 
| +      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
 | 
| +      keywords='mozilla manifests',
 | 
| +      author='Mozilla Automation and Testing Team',
 | 
| +      author_email='tools@lists.mozilla.org',
 | 
| +      url='https://wiki.mozilla.org/Auto-tools/Projects/MozBase',
 | 
| +      license='MPL',
 | 
| +      zip_safe=False,
 | 
| +      packages=['manifestparser'],
 | 
| +      install_requires=[],
 | 
| +      entry_points="""
 | 
| +      [console_scripts]
 | 
| +      manifestparser = manifestparser.manifestparser:main
 | 
| +      """,
 | 
| +     )
 | 
| 
 | 
| Property changes on: third_party/manifestdestiny/setup.py
 | 
| ___________________________________________________________________
 | 
| Added: svn:eol-style
 | 
|    + LF
 | 
| 
 | 
| 
 |