Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note about using Pyinstaller. #22

Merged
merged 1 commit into from
Mar 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,19 @@ See packaging instructions on [OPAM's
site](http://opam.ocaml.org/doc/Packaging.html), and submit pull
requests.

### Python scripts

It is (lightly) suggested that `Python` scripts be converted to standalone
executables via [Pyinstaller](https://github.com/pyinstaller/pyinstaller).
This clarifies what version of `Python` is required by the script
([2.7](https://www.python.org/downloads/) or
[3.5](https://www.python.org/downloads/)). It also resolves all of the
scripts library dependencies (eg. `numpy`, `biopython`) so that the
user can make sure they are installed before running the application.
This is readily accomplished via Pyinstaller-`spec` file,
[OptiType](packages/optitype/optitype.1.0.0/files/OptiTypePipeline.spec)
provides a good example.


## Tool Developers
See code under the `bin/` directory.
Expand Down