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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 )
OLDNEW
« 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