Skip to content

Commit

Permalink
Attempt to add the readme to the pypi page
Browse files Browse the repository at this point in the history
  • Loading branch information
hugohadfield authored Mar 6, 2020
1 parent 63d90c7 commit 4279fa1
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 @@ -5,6 +5,12 @@
from os import path
import os

# read the contents of our README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


version_path = os.path.join('pyganja', '_version.py')
exec(open(version_path).read())

Expand Down Expand Up @@ -36,4 +42,6 @@ def run(self):
install_requires = [
'IPython'
],
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 4279fa1

Please sign in to comment.