mirror of
https://github.com/boostorg/boost-ci.git
synced 2026-02-03 09:02:09 +00:00
9 lines
207 B
Python
9 lines
207 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import json
|
|
|
|
with open(os.path.join(os.environ['BOOST_CI_SRC_FOLDER'], 'meta', 'libraries.json')) as jsonFile:
|
|
lib_data = json.load(jsonFile)
|
|
print(lib_data['key'])
|