Spaces:
Running
Running
File size: 691 Bytes
072f65e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from pathlib import Path
from loguru import logger
license_path = Path(__file__).parent / "LICENSE"
logger.info(f"""
The module '{__name__}' is adapted from the repository: https://github.com/hspark1212/DAC-SIM.
By using this module, you agree to the terms and conditions specified in the following license:
https://github.com/hspark1212/DAC-SIM/blob/main/LICENSE
Additionally, please ensure proper attribution by citing the reference:
Lim, Y., Park, H., Walsh, A., & Kim, J. (2024). Accelerating CO₂ Direct Air Capture Screening for Metal-Organic Frameworks with a Transferable Machine Learning Force Field.
A local copy of the LICENSE file can be found at: {license_path}.
""")
|