diff -r 6a0b43a5dec0 -r d2b277cb948e librarystandards.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/librarystandards.py Mon Jun 24 10:13:13 2019 +0300 @@ -0,0 +1,9 @@ +from configparser import ConfigParser +from pathlib import Path +from os.path import dirname + +ini_path = Path(dirname(__file__)) / 'tests' / 'library-standards.ini' +library_standards = ConfigParser() + +with ini_path.open() as file: + library_standards.read_file(file)