1 2 3 4 5 6 7 8 9 10 11 12 13
|
import os
from ._version import __version__
__mincasacoreversion__ = "3.1.1"
# If environment variable `AIPSPATH` is not set, then set it to the directory
# containing the `.aipsrc` file that is distributed with this package.
# This `.aipsrc` file uses the environment `CASACORE_DATADIR`, which should
# point to the directory containing the casacore data files.
if "AIPSPATH" not in os.environ:
root = os.path.dirname(__file__)
os.environ["AIPSPATH"] = root
os.environ["CASACORE_DATADIR"] = os.path.join(root, "data")
|