python/mach/setup.py

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/python/mach/setup.py	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,38 @@
     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 +try:
     1.9 +    from setuptools import setup
    1.10 +except:
    1.11 +    from distutils.core import setup
    1.12 +
    1.13 +
    1.14 +VERSION = '0.3'
    1.15 +
    1.16 +README = open('README.rst').read()
    1.17 +
    1.18 +setup(
    1.19 +    name='mach',
    1.20 +    description='Generic command line command dispatching framework.',
    1.21 +    long_description=README,
    1.22 +    license='MPL 2.0',
    1.23 +    author='Gregory Szorc',
    1.24 +    author_email='gregory.szorc@gmail.com',
    1.25 +    url='https://developer.mozilla.org/en-US/docs/Developer_Guide/mach',
    1.26 +    packages=['mach'],
    1.27 +    version=VERSION,
    1.28 +    classifiers=[
    1.29 +        'Environment :: Console',
    1.30 +        'Development Status :: 3 - Alpha',
    1.31 +        'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
    1.32 +        'Natural Language :: English',
    1.33 +    ],
    1.34 +    install_requires=[
    1.35 +        'blessings',
    1.36 +        'mozfile',
    1.37 +        'mozprocess',
    1.38 +    ],
    1.39 +    tests_require=['mock'],
    1.40 +)
    1.41 +

mercurial