Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 import os
7 from setuptools import setup
9 PACKAGE_VERSION = '0.0'
11 try:
12 pwd = os.path.dirname(os.path.abspath(__file__))
13 description = open(os.path.join(here, 'README.rst')).read()
14 except:
15 description = ''
17 setup(
18 name='mozsystemmonitor',
19 description='Monitor system resource usage.',
20 long_description=description,
21 license='MPL 2.0',
22 keywords='mozilla',
23 author='Mozilla Automation and Tools Team',
24 author_email='tools@lists.mozilla.org',
25 url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
26 packages=['mozsystemmonitor'],
27 version=PACKAGE_VERSION,
28 install_requires=['psutil >= 0.7.1'],
29 )