aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index d77d9e8..2268e2d 100755
--- a/setup.py
+++ b/setup.py
@@ -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/',