Skip to content

Commit

Permalink
Merge pull request #262 from understandable-machine-intelligence-lab/…
Browse files Browse the repository at this point in the history
…fix-abs-path

updated setuÃp.py with absolute path
  • Loading branch information
annahedstroem authored May 9, 2023
2 parents ce2db1c + 75ecdb6 commit bd97d62
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
# Quantus is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License along with Quantus. If not, see <https://www.gnu.org/licenses/>.

import os
from setuptools import setup, find_packages
from importlib import util

with open("requirements.txt") as f:
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:

required = f.read().splitlines()

with open("requirements_test.txt") as f:
with open(os.path.join(os.path.dirname(__file__), "requirements_test.txt")) as f:
required_tests = f.read().splitlines()

# Define extras.
Expand Down

0 comments on commit bd97d62

Please sign in to comment.