python/mach/setup.py

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     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 try:
     6     from setuptools import setup
     7 except:
     8     from distutils.core import setup
    11 VERSION = '0.3'
    13 README = open('README.rst').read()
    15 setup(
    16     name='mach',
    17     description='Generic command line command dispatching framework.',
    18     long_description=README,
    19     license='MPL 2.0',
    20     author='Gregory Szorc',
    21     author_email='gregory.szorc@gmail.com',
    22     url='https://developer.mozilla.org/en-US/docs/Developer_Guide/mach',
    23     packages=['mach'],
    24     version=VERSION,
    25     classifiers=[
    26         'Environment :: Console',
    27         'Development Status :: 3 - Alpha',
    28         'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
    29         'Natural Language :: English',
    30     ],
    31     install_requires=[
    32         'blessings',
    33         'mozfile',
    34         'mozprocess',
    35     ],
    36     tests_require=['mock'],
    37 )

mercurial