Skip to content

Commit

Permalink
Fixed setup.py to explicitly use pip/setuptools temp path
Browse files Browse the repository at this point in the history
  • Loading branch information
mwvaughn committed Apr 16, 2018
1 parent c18e49a commit e517f0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
from agavedb import __version__

HERE = os.path.dirname(os.path.abspath(__file__))
readme = open('README.rst').read()
requires = [pkg for pkg in open('requirements.txt').readlines()]
readme = open(os.path.join(HERE, 'README.rst')).read()
requires = [pkg for pkg in open(
os.path.join(HERE, 'requirements.txt')).readlines()]

setup(
name='agavedb',
Expand Down

0 comments on commit e517f0b

Please sign in to comment.