This is the pexpect module bundled for usage with Package Control, a package manager for the Sublime Text text editor.
In order to tell Package Control
that you are using the pexpect module
in your ST package,
create a dependencies.json
file
in your package root
with the following contents:
{
"*": {
">3000": [
"pexpect"
]
}
}
If the file exists already,
add "pexpect"
to the every dependency list.
Then run the Package Control: Satisfy Dependencies command to make Package Control install the module for you locally (if you don't have it already).
After all this
you can use import pexpect
in any of your Python plugins.
See also: Documentation on Dependencies
- Download the latest tarball from pypi.
- Delete everything inside the
st3/
folder. - Copy the
pexpect/
folder and everything related to copyright/licensing from the tarball to thest3/
folder. - Commit changes
and either create a pull request
or create a tag directly
in the format
v<version>
(in case you have push access).
The contents of the root folder
in this repository
are released
under the public domain.
The contents of the st3/
folder
fall under their own bundled licenses.