|
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/. |
|
4 |
|
5 try: |
|
6 from setuptools import setup |
|
7 except: |
|
8 from distutils.core import setup |
|
9 |
|
10 |
|
11 VERSION = '0.3' |
|
12 |
|
13 README = open('README.rst').read() |
|
14 |
|
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 ) |
|
38 |