source: git/machine_learning/ml_python/common/constants.py @ cd552e

spielwiese
Last change on this file since cd552e was cd552e, checked in by Murray Heymann <heymann.murray@…>, 5 years ago
Create dir in home for cache files for ml
  • Property mode set to 100644
File size: 608 bytes
Line 
1"""
2A constants file for our Singular python subproject
3"""
4import os
5
6HOME_DIR       = os.path.expanduser("~/.singular")
7SINGULAR_BIN   = os.path.expanduser("~/Singular/Singular4/bin/Singular")
8EXTRACT_SCRIPT = "extract.lib"
9KEYWORDS_FILE  = os.path.expanduser("~/.singular/keywords.txt")
10VECTORS_NPY    = os.path.expanduser("~/.singular/vectors.npy")
11HELPFILE_NPY   = os.path.expanduser("~/.singular/helpfilelist.npy")
12
13HELP_FILE_URL  = "ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/src/4-1-2/doc.tbz2"
14HELP_FILE_PATH = os.path.join(os.path.expanduser("~/.singular"), 
15        "helpfiles", "singular")
Note: See TracBrowser for help on using the repository browser.