Skip to content

Commit

Permalink
Fix relative path logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed Oct 26, 2021
1 parent 38bb83e commit e40fd46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@


# use README from repository root
this_directory = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
with open(os.path.join(this_directory, 'README.md')) as f:
root_directory = os.path.abspath(os.path.join(os.path.dirname(__file__),'..'))
with open(os.path.join(root_directory, 'README.md')) as f:
long_description = f.read()


Expand Down

0 comments on commit e40fd46

Please sign in to comment.