Skip to content

Commit

Permalink
Use content or README.md as long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
vilcans committed Jul 11, 2020
1 parent e67038d commit 9d972bf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
url='http://www.screenplain.com/',
Expand Down

0 comments on commit 9d972bf

Please sign in to comment.