diff --git a/setup.py b/setup.py index 85da9bcc..d1eda5af 100755 --- a/setup.py +++ b/setup.py @@ -190,7 +190,7 @@ if 'setuptools' in sys.modules: with open('requirements.txt') as f: for line in f.readlines(): req = line.strip() - if not req or req.startswith(('-e', '#')): + if not req or req.startswith('#') or '://' in req: continue install_requires.append(req)