File size: 459 Bytes
fc7d689 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """Neural FDM: Differentiable form-finding with neural networks for architectural structures."""
import os
__version__ = "1.1.0"
HERE = os.path.dirname(__file__)
HOME = os.path.abspath(os.path.join(HERE, "../../"))
DATA = os.path.abspath(os.path.join(HOME, "data"))
FIGURES = os.path.abspath(os.path.join(HOME, "figures"))
SCRIPTS = os.path.abspath(os.path.join(HOME, "scripts"))
__all__ = [
"__version__",
"DATA",
"FIGURES",
"SCRIPTS",
]
|