diff options
-rwxr-xr-x | setup.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2,10 +2,18 @@ from setuptools import setup +# read the contents of your README file +from os import path +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + setup( name='screenplain', version='0.9.0', description='Convert text file to viewable screenplay.', + long_description=long_description, + long_description_content_type='text/markdown', author='Martin Vilcans', author_email='screenplain@librador.com', url='http://www.screenplain.com/', |