X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;fp=setup.py;h=97658f1be3a89cc12dd5ece57fec656d825a3606;hb=0143b0c3ae358a6a37949bf284c8ba08281f372d;hp=3c8098630ab593c22dd41f7f97ebd50af00c8cc1;hpb=2b0e2d72595a5e25bd8f785138416d12829fbd64;p=osm%2FPLA.git diff --git a/setup.py b/setup.py index 3c80986..97658f1 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ from setuptools import setup def parse_requirements(requirements): with open(requirements) as f: - return [l.strip('\n') for l in f if l.strip('\n') and not l.startswith('#') and '://' not in l] + return [req.strip('\n') for req in f if req.strip('\n') and not req.startswith('#') and '://' not in req] _name = 'osm_pla'