mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Vendor mach-1.0.0.
This commit is contained in:
parent
8dc59c6985
commit
f4de057784
24 changed files with 2850 additions and 1 deletions
29
python/mach/mach.egg-info/PKG-INFO
Normal file
29
python/mach/mach.egg-info/PKG-INFO
Normal file
|
@ -0,0 +1,29 @@
|
|||
Metadata-Version: 1.1
|
||||
Name: mach
|
||||
Version: 1.0.1
|
||||
Summary: Generic command line command dispatching framework.
|
||||
Home-page: https://developer.mozilla.org/en-US/docs/Developer_Guide/mach
|
||||
Author: Gregory Szorc
|
||||
Author-email: gregory.szorc@gmail.com
|
||||
License: MPL 2.0
|
||||
Description: ====
|
||||
mach
|
||||
====
|
||||
|
||||
Mach (German for *do*) is a generic command dispatcher for the command
|
||||
line.
|
||||
|
||||
To use mach, you install the mach core (a Python package), create an
|
||||
executable *driver* script (named whatever you want), and write mach
|
||||
commands. When the *driver* is executed, mach dispatches to the
|
||||
requested command handler automatically.
|
||||
|
||||
To learn more, read the docs in ``docs/``.
|
||||
|
||||
Platform: UNKNOWN
|
||||
Classifier: Environment :: Console
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
|
||||
Classifier: Natural Language :: English
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3.5
|
21
python/mach/mach.egg-info/SOURCES.txt
Normal file
21
python/mach/mach.egg-info/SOURCES.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
README.rst
|
||||
setup.cfg
|
||||
setup.py
|
||||
mach/__init__.py
|
||||
mach/base.py
|
||||
mach/config.py
|
||||
mach/decorators.py
|
||||
mach/dispatcher.py
|
||||
mach/logging.py
|
||||
mach/main.py
|
||||
mach/registrar.py
|
||||
mach/terminal.py
|
||||
mach/util.py
|
||||
mach.egg-info/PKG-INFO
|
||||
mach.egg-info/SOURCES.txt
|
||||
mach.egg-info/dependency_links.txt
|
||||
mach.egg-info/requires.txt
|
||||
mach.egg-info/top_level.txt
|
||||
mach/mixin/__init__.py
|
||||
mach/mixin/logging.py
|
||||
mach/mixin/process.py
|
1
python/mach/mach.egg-info/dependency_links.txt
Normal file
1
python/mach/mach.egg-info/dependency_links.txt
Normal file
|
@ -0,0 +1 @@
|
|||
|
4
python/mach/mach.egg-info/requires.txt
Normal file
4
python/mach/mach.egg-info/requires.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
blessings
|
||||
mozfile
|
||||
mozprocess
|
||||
six
|
1
python/mach/mach.egg-info/top_level.txt
Normal file
1
python/mach/mach.egg-info/top_level.txt
Normal file
|
@ -0,0 +1 @@
|
|||
mach
|
Loading…
Add table
Add a link
Reference in a new issue