Belle II Software development
print_license.py
1#!/usr/bin/env python3
2
3
10
11from basf2 import find_file
12
13print('')
14
15with open(find_file("LICENSE.md")) as license_file:
16 print(license_file.read())
17
18print("For the full text of the LGPL-3.0 License see $BELLE2_RELEASE_DIR/COPYING")