-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
80 lines (64 loc) · 2.16 KB
/
environment.yml
File metadata and controls
80 lines (64 loc) · 2.16 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
name: flits
channels:
- conda-forge
- defaults
dependencies:
# ===== Core Python =====
- python=3.12
# ===== Core Scientific Computing =====
- numpy>=1.20.0
- scipy>=1.7.0
- astropy>=5.0
- pandas>=1.3.0
- h5py>=3.0
# ===== Plotting and Visualization =====
- matplotlib>=3.4.0
- seaborn # For enhanced statistical visualizations
# ===== Interactive Computing =====
- ipython
- jupyter
- jupyterlab # Modern Jupyter interface
- notebook
- ipywidgets>=7.6.0 # Required for interactive widgets
- ipykernel # Jupyter kernel
# ===== Performance and Parallel Computing =====
- numba>=0.54.0 # JIT compilation
- joblib>=1.1.0 # Parallel processing
# ===== Data Analysis and Manipulation =====
- scikit-image>=0.18.0 # Image processing and Gaussian filtering
# ===== Configuration and I/O =====
- pyyaml>=5.4.0
- tqdm>=4.62.0 # Progress bars
# ===== Statistical Analysis and Error Propagation =====
- uncertainties>=3.1.4
# ===== Astronomy-Specific Packages =====
- astroquery # Query astronomical databases (NED, SDSS, etc.)
- healpy # HEALPix for all-sky maps
- regions # Astronomical region handling
# ===== Testing and Quality Assurance =====
- pytest>=7.0
- pytest-cov # Code coverage
- hypothesis # Property-based testing
# ===== Development Tools =====
- black # Code formatting
- ruff # Fast linter
- mypy # Static type checking
- pre-commit # Git hooks for quality checks
# ===== Documentation =====
- sphinx # Documentation generation
- sphinx_rtd_theme # Read the Docs theme
# ===== Package Management =====
- pip
- setuptools>=65
- wheel
# ===== Pip-only Packages =====
- pip:
# MCMC and Bayesian Inference
- emcee>=3.1.0 # Affine-invariant MCMC sampler
- dynesty>=2.1.0 # Nested sampling for Bayesian evidence
- corner>=2.2.0 # Corner plots for MCMC diagnostics
- chainconsumer>=0.34.0 # MCMC chain analysis and visualization
# Fitting and Optimization
- lmfit>=1.0.0 # Non-linear least-squares minimization
# Galactic Models
- mwprop>=0.1.0 # Milky Way electron density models (NE2001)