Skip to content

Commit

Permalink
Correct relative paths in docs setup
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlees committed Jul 16, 2020
1 parent 745f093 commit 7ec2e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def find_version(*file_paths):
here = path.abspath(path.dirname(__file__))


with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, '..', 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='poppunk',
version=find_version("PopPUNK/__init__.py"),
version=find_version("../PopPUNK/__init__.py"),
description='PopPUNK (POPulation Partitioning Using Nucleotide Kmers)',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7ec2e2e

Please sign in to comment.