From 0ee0f40642f4e53058027947c07154056a26ad6d Mon Sep 17 00:00:00 2001 From: Martin Vilcans Date: Thu, 3 Apr 2014 00:50:23 +0200 Subject: Add setup script --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..8261a7f --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup( + name='screenplain', + version='0.2', + description='Convert text file to viewable screenplay.', + author='Martin Vilcans', + author_email='screenplain@librador.com', + url='http://www.screenplain.com/', + packages=[ + 'screenplain', + 'screenplain.export', + 'screenplain.parsers', + ], + package_data={ + 'screenplain.export': ['default.css'] + }, + scripts=[ + 'bin/screenplain' + ] +) -- cgit