testing/mozbase/mozsystemmonitor/setup.py

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:28a1710c63b0
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/.
4
5 import os
6
7 from setuptools import setup
8
9 PACKAGE_VERSION = '0.0'
10
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 = ''
16
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 )

mercurial