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