From 4bd5b88e2f5b25c642a3c1ba78b02c934f39c0b6 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Mon, 8 Jan 2018 23:02:50 -0200 Subject: [PATCH] Fix bad requirements path Signed-off-by: Uilian Ries --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 253300b..2b6467d 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def load_version(): # for example: # $ pip install -e .[dev,test] extras_require={ - 'test': get_requires(os.path.join('tests', 'requirements_test.txt')) + 'test': get_requires(os.path.join('bincrafters', 'requirements_test.txt')) }, # If there are data files included in your packages that need to be