python/mach/setup.py

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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