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

Unified Diff: third_party/manifestdestiny/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 side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/manifestdestiny/manifestparser/manifestparser.py ('k') | third_party/manifestdestiny/tests/filter-example.ini » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698