1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/mozbase/mozsystemmonitor/setup.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +import os 1.9 + 1.10 +from setuptools import setup 1.11 + 1.12 +PACKAGE_VERSION = '0.0' 1.13 + 1.14 +try: 1.15 + pwd = os.path.dirname(os.path.abspath(__file__)) 1.16 + description = open(os.path.join(here, 'README.rst')).read() 1.17 +except: 1.18 + description = '' 1.19 + 1.20 +setup( 1.21 + name='mozsystemmonitor', 1.22 + description='Monitor system resource usage.', 1.23 + long_description=description, 1.24 + license='MPL 2.0', 1.25 + keywords='mozilla', 1.26 + author='Mozilla Automation and Tools Team', 1.27 + author_email='tools@lists.mozilla.org', 1.28 + url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase', 1.29 + packages=['mozsystemmonitor'], 1.30 + version=PACKAGE_VERSION, 1.31 + install_requires=['psutil >= 0.7.1'], 1.32 +)