Skip to content

Commit

Permalink
Fix loading README.md in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlawren committed Aug 27, 2019
1 parent 9359fbe commit eb07dfd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import os
from setuptools import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name='plexauth',
version='0.0.1',
description='Handles the authorization flow to obtain tokens from Plex.tv via external redirection.',
long_description='README.md',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/jjlawren/python-plexauth/',
license='MIT',
Expand Down

0 comments on commit eb07dfd

Please sign in to comment.