From 7f910ba91be2564a9f78bcfa39759698f3ebf85f Mon Sep 17 00:00:00 2001 From: timotheyca Date: Sun, 19 Dec 2021 19:53:46 +0300 Subject: [PATCH] fix setup.py requirements --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a686506..efd9a9d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from pathlib import Path from setuptools import setup -with open(Path(__file__) / 'requirements.txt') as f: +with open(Path(__file__) / '../requirements.txt') as f: install_requires = f.read().strip().split('\n') setup(