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

Side by Side Diff: third_party/mozprocess/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
« no previous file with comments | « third_party/mozprocess/mozprocess/wpk.py ('k') | third_party/mozprocess/tests/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import os
6 from setuptools import setup
7
8 PACKAGE_VERSION = '0.8'
9
10 # take description from README
11 here = os.path.dirname(os.path.abspath(__file__))
12 try:
13 description = file(os.path.join(here, 'README.md')).read()
14 except (OSError, IOError):
15 description = ''
16
17 setup(name='mozprocess',
18 version=PACKAGE_VERSION,
19 description="Mozilla-authored process handling",
20 long_description=description,
21 classifiers=['Environment :: Console',
22 'Intended Audience :: Developers',
23 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2 .0)',
24 'Natural Language :: English',
25 'Operating System :: OS Independent',
26 'Programming Language :: Python',
27 'Topic :: Software Development :: Libraries :: Python Modules ',
28 ],
29 keywords='mozilla',
30 author='Mozilla Automation and Tools team',
31 author_email='tools@lists.mozilla.org',
32 url='https://wiki.mozilla.org/Auto-tools/Projects/MozBase',
33 license='MPL 2.0',
34 packages=['mozprocess'],
35 include_package_data=True,
36 zip_safe=False,
37 install_requires=['mozinfo'],
38 entry_points="""
39 # -*- Entry points: -*-
40 """,
41 )
OLDNEW
« no previous file with comments | « third_party/mozprocess/mozprocess/wpk.py ('k') | third_party/mozprocess/tests/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698