Skip to content

Commit

Permalink
Fix PKG_FOLDER path issues in setup.py (#624)
Browse files Browse the repository at this point in the history
* changed PKG_FOLDER (is this the fix?)

* VERSION 0.3.1 -> 0.3.2
  • Loading branch information
srivarra authored Jun 29, 2022
1 parent fe7c851 commit 5250c6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from os import path, pardir
from setuptools import setup, find_packages

VERSION = '0.3.1'
VERSION = '0.3.2'

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 5250c6a

Please sign in to comment.