diff options
| author | John Peter Yamauchi <johnpeteryams@gmail.com> | 2019-02-19 22:03:50 -0600 |
|---|---|---|
| committer | John Peter Yamauchi <johnpeteryams@gmail.com> | 2019-02-19 22:03:50 -0600 |
| commit | 16af7101e490ce86aef57f0ed0eb475741fa06a4 (patch) | |
| tree | 07ab703d2e8cfcd47b055c46bf53a411fe01c526 /README.markdown | |
| parent | 9c2e3683e207e81cf88350fde2dfadcecd5cc914 (diff) | |
| parent | d9eb1a980798ff54ac9cd81ff1821f78aa57156b (diff) | |
Merge branch 'master' into python3
Diffstat (limited to 'README.markdown')
| -rw-r--r-- | README.markdown | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index 01c814b..db5a2f5 100644 --- a/README.markdown +++ b/README.markdown @@ -33,6 +33,15 @@ the master branch may not always work. I'm currently working on supporting the whole [Fountain](http://fountain.io) specification. (Fountain was previously known as "Screenplay Markdown" or "SPMD.") +Installing +========== + + pip install screenplain + +To enable PDF output, install with the PDF extra (installs ReportLab): + + pip install 'screenplain[PDF]' + Credits ======= @@ -60,8 +69,18 @@ Set up environment using virtualenvwrapper: mkvirtualenv --no-site-packages screenplain pip install -r requirements.txt +<<<<<<< HEAD For developing for Python 3, instead use: mkvirtualenv --no-site-packages --python=$(which python3) screenplain-py3 pip install -r requirements-py3.txt +======= + pip install -e . + +After this, the `screenplain` command will use the working copy of your code. + +To run unit tests and style checks, run: + + bin/test +>>>>>>> master |
