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: try: michael@0: from setuptools import setup michael@0: except: michael@0: from distutils.core import setup michael@0: michael@0: michael@0: VERSION = '0.3' michael@0: michael@0: README = open('README.rst').read() michael@0: michael@0: setup( michael@0: name='mach', michael@0: description='Generic command line command dispatching framework.', michael@0: long_description=README, michael@0: license='MPL 2.0', michael@0: author='Gregory Szorc', michael@0: author_email='gregory.szorc@gmail.com', michael@0: url='https://developer.mozilla.org/en-US/docs/Developer_Guide/mach', michael@0: packages=['mach'], michael@0: version=VERSION, michael@0: classifiers=[ michael@0: 'Environment :: Console', michael@0: 'Development Status :: 3 - Alpha', michael@0: 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', michael@0: 'Natural Language :: English', michael@0: ], michael@0: install_requires=[ michael@0: 'blessings', michael@0: 'mozfile', michael@0: 'mozprocess', michael@0: ], michael@0: tests_require=['mock'], michael@0: ) michael@0: