Skip to content

Commit

Permalink
Adding requirements to manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesridgway committed May 9, 2021
1 parent d34417e commit 806133c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from setuptools import setup, find_packages
import os
import subprocess


Expand All @@ -11,7 +12,7 @@ def get_version():
return last_tag


with open('requirements.txt') as f:
with open(os.path.abspath(os.path.join(os.path.dirname(__file__), 'requirements.txt'))) as f:
install_reqs = f.read().splitlines()

setup(
Expand Down

0 comments on commit 806133c

Please sign in to comment.