Skip to content

Commit

Permalink
changed PKG_FOLDER (is this the fix?)
Browse files Browse the repository at this point in the history
  • Loading branch information
srivarra committed Jun 27, 2022
1 parent 3454c62 commit f0df1b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

PKG_FOLDER = path.abspath(path.join(__file__, pardir))

# set a long description which is basically the README
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()

with open(path.join(PKG_FOLDER, 'requirements.txt')) as req_file:
requirements = req_file.read().splitlines()

# set a long description which is basically the README
with open(path.join(PKG_FOLDER, 'README.md')) as f:
long_description = f.read()

setup(
name='ark-analysis',
Expand Down

0 comments on commit f0df1b4

Please sign in to comment.