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 /setup.py | |
| parent | 9c2e3683e207e81cf88350fde2dfadcecd5cc914 (diff) | |
| parent | d9eb1a980798ff54ac9cd81ff1821f78aa57156b (diff) | |
Merge branch 'master' into python3
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..c5601f9 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup( + name='screenplain', + version='0.7.0', + description='Convert text file to viewable screenplay.', + author='Martin Vilcans', + author_email='screenplain@librador.com', + url='http://www.screenplain.com/', + extras_require={ + 'PDF': 'reportlab' + }, + packages=[ + 'screenplain', + 'screenplain.export', + 'screenplain.parsers', + ], + package_data={ + 'screenplain.export': ['default.css'] + }, + scripts=[ + 'bin/screenplain' + ] +) |
