michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: import os michael@0: michael@0: from setuptools import setup michael@0: michael@0: PACKAGE_VERSION = '0.0' michael@0: michael@0: try: michael@0: pwd = os.path.dirname(os.path.abspath(__file__)) michael@0: description = open(os.path.join(here, 'README.rst')).read() michael@0: except: michael@0: description = '' michael@0: michael@0: setup( michael@0: name='mozsystemmonitor', michael@0: description='Monitor system resource usage.', michael@0: long_description=description, michael@0: license='MPL 2.0', michael@0: keywords='mozilla', michael@0: author='Mozilla Automation and Tools Team', michael@0: author_email='tools@lists.mozilla.org', michael@0: url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase', michael@0: packages=['mozsystemmonitor'], michael@0: version=PACKAGE_VERSION, michael@0: install_requires=['psutil >= 0.7.1'], michael@0: )