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/.
7 from setuptools
import setup
10 HERE
= os
.path
.dirname(__file__
)
11 README
= open(os
.path
.join(HERE
, "README.rst")).read()
15 description
="Generic command line command dispatching framework.",
16 long_description
=README
,
18 author
="Gregory Szorc",
19 author_email
="gregory.szorc@gmail.com",
20 url
="https://developer.mozilla.org/en-US/docs/Developer_Guide/mach",
21 packages
=["mach", "mach.mixin"],
24 "Environment :: Console",
25 "Development Status :: 5 - Production/Stable",
26 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
27 "Natural Language :: English",
28 "Programming Language :: Python :: 2.7",
29 "Programming Language :: Python :: 3.5",
37 tests_require
=["mock"],