From f5f1409af0bca5c80499565fcc213336d9a7bad4 Mon Sep 17 00:00:00 2001 From: Josh Bailey Date: Thu, 26 Aug 2021 13:35:44 +1200 Subject: [PATCH] requirements.txt path. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1e865278..6d50ff0e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='dovesnap', version=[ f.split('"')[1] for f in open('main.go', 'r').readlines() if 'version' in f ][0], - install_requires=open('graph_dovesnap/requirements.txt', 'r').read().splitlines(), + install_requires=open('requirements.txt', 'r').read().splitlines(), license='Apache License 2.0', description='graphviz generator of dovesnap networks', url='https://github.com/IQTLabs/dovesnap',