b12966c487
Change-Id: I48c26cc432a0322c5482bc1645537f59c1f6717d
8 lines
182 B
Python
8 lines
182 B
Python
from openstack_requirements import requirement
|
|
|
|
|
|
def read_requirements_file(filename):
|
|
with open(filename, 'rt') as f:
|
|
body = f.read()
|
|
return requirement.parse(body)
|