forked from astropy/astropy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastropy.cfg
More file actions
107 lines (71 loc) · 3.05 KB
/
astropy.cfg
File metadata and controls
107 lines (71 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
### CORE DATA STRUCTURES AND TRANSFORMATIONS
[nddata]
## Whether to issue a warning if NDData arithmetic is performed with
## uncertainties and the uncertainties do not support the propagation of
## correlated uncertainties.
# warn_unsupported_correlated = True
[table]
## Maximum number of lines for the pretty-printer to use if it cannot determine
## the terminal size. Negative numbers mean no limit.
# max_lines = 25
## Maximum number of characters for the pretty-printer to use per line if it
## cannot determine the terminal size. Negative numbers mean no limit.
# max_width = 80
## The template that determines the name of a column if it cannot be
## determined. Uses new-style (format method) string formatting
# auto_colname = col{0}
### ASTRONOMY COMPUTATIONS AND UTILITIES
[vo]
## URL where VO Service database file is stored.
# vos_baseurl = http://stsdas.stsci.edu/astrolib/vo_databases/
## Conesearch database name.
# conesearch_dbname = conesearch_good
[vo.samp]
## Whether to allow astropy.vo.samp to use the internet, if available
# use_internet = True
[vo.validator]
## Cone Search services master list for validation.
# conesearch_master_list = http://vao.stsci.edu/directory/NVORegInt.asmx/VOTCapabilityPredOpt?predicate=1%3D1&capability=conesearch&VOTStyleOption=2
## Only check these Cone Search URLs.
# conesearch_urls =
## VO Table warning codes that are considered non-critical
# noncritical_warnings = W03, W06, W07, W09, W10, W15, W17, W20, W21, W22, W27, W28, W29, W41, W42, W48, W50
### NUTS AND BOLTS OF ASTROPY
## Use Unicode characters when outputting values, and writing widgets to the
## console.
# unicode_output = False
## When True, use ANSI color escape sequences when writing to the console.
# use_color = True
[logger]
## Threshold for the logging messages. Logging messages that are less severe
## than this level will be ignored. The levels are 'DEBUG', 'INFO', 'WARNING',
## 'ERROR'
# log_level = INFO
## Whether to log warnings.warn calls
# log_warnings = True
## Whether to log exceptions before raising them
# log_exceptions = False
## Whether to always log messages to a log file
# log_to_file = False
## The file to log messages to. When '', it defaults to a file 'astropy.log' in
## the astropy config directory.
# log_file_path = ""
## Threshold for logging messages to log_file_path
# log_file_level = INFO
## Format for log file entries
# log_file_format = "%(asctime)r, %(origin)r, %(levelname)r, %(message)r"
[utils.data]
## URL for astropy remote data site.
# dataurl = http://data.astropy.org/
## Time to wait for remote data query (in seconds).
# remote_timeout = 3.0
## Block size for computing MD5 file hashes.
# hash_block_size = 65536
## Number of bytes of remote data to download per step.
# download_block_size = 65536
## Number of times to try to get the lock while accessing the data cache before
## giving up.
# download_cache_lock_attempts = 5
## If True, temporary download files created when the cache is inacessible will
## be deleted at the end of the python session.
# delete_temporary_downloads_at_exit = True