Merge branch 'deployment_improvements'
# Conflicts: # .gitlab-ci.yml
No related branches found
No related tags found
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- .gitlab-ci.yml 2 additions, 2 deletions.gitlab-ci.yml
- environment.yml 53 additions, 0 deletionsenvironment.yml
- pyramid/fft.py 1 addition, 1 deletionpyramid/fft.py
- pyramid/file_io/io_vectordata.py 1 addition, 1 deletionpyramid/file_io/io_vectordata.py
- pyramid/tests/test_analytic.py 0 additions, 5 deletionspyramid/tests/test_analytic.py
- pyramid/tests/test_costfunction.py 0 additions, 5 deletionspyramid/tests/test_costfunction.py
- pyramid/tests/test_dataset.py 0 additions, 5 deletionspyramid/tests/test_dataset.py
- pyramid/tests/test_fielddata.py 0 additions, 5 deletionspyramid/tests/test_fielddata.py
- pyramid/tests/test_forwardmodel.py 0 additions, 5 deletionspyramid/tests/test_forwardmodel.py
- pyramid/tests/test_kernel.py 0 additions, 5 deletionspyramid/tests/test_kernel.py
- pyramid/tests/test_magcreator.py 0 additions, 5 deletionspyramid/tests/test_magcreator.py
- pyramid/tests/test_phasemap.py 0 additions, 5 deletionspyramid/tests/test_phasemap.py
- pyramid/tests/test_phasemapper.py 0 additions, 5 deletionspyramid/tests/test_phasemapper.py
- pyramid/tests/test_pm.py 0 additions, 5 deletionspyramid/tests/test_pm.py
- pyramid/tests/test_projector.py 0 additions, 4 deletionspyramid/tests/test_projector.py
- pyramid/tests/test_regularisator.py 0 additions, 5 deletionspyramid/tests/test_regularisator.py
- requirements.txt 39 additions, 0 deletionsrequirements.txt
- setup.cfg 1 addition, 1 deletionsetup.cfg
- setup.py 36 additions, 20 deletionssetup.py
environment.yml
0 → 100644
requirements.txt
0 → 100644
# REQUIREMENTS FOR PYRAMID | ||
# | ||
# Use "pip install -f requirements.txt" to install with pip! | ||
# If you want to install basic dependencies according to setup.py use "pip install -e .['all']"! | ||
# | ||
# OR (recommended): | ||
# | ||
# Create environment with "conda create -n pyramid -f requirements.txt"! | ||
# Add necessary channels: | ||
# - "conda-forge" --> hyperspy (win-32/64, linux-64, osx-64), pyFFTW (linux-64, osx-64) | ||
# - "ccpi" --> pyFFTW (win-64) | ||
# with one of these options: | ||
# - add them as a parameter to "conda create -n pyramid -f requirements.txt -c CHANNELS" | ||
# - add them to ~/.condarc with "conda config --append channels CHANNEL" (one by one) | ||
# | ||
# The jutil package from "https://iffgit.fz-juelich.de/unger/jutil" has to be installed manually! | ||
python==3.5 | ||
numpy==1.11 | ||
scipy==0.19 | ||
tqdm==4.14 | ||
scikit-image==0.13 | ||
pyfftw==0.10 | ||
hyperspy==1.3 | ||
hyperspy-gui-ipywidgets==1.0 | ||
hyperspy-gui-traitsui==1.0 | ||
h5py==2.7 | ||
matplotlib==2.0 | ||
Pillow==4.1 | ||
cmocean==1.1 | ||
qt==4.8 | ||
mayavi==4.5 | ||
pytest==3.1 | ||
pytest-cov==2.5 | ||
pytest-flake8==0.8 | ||
pytest-runner==2.11 | ||
coverage==4.4 | ||
ipython==5.3 | ||
jupyter==1.0 |
Please register or sign in to comment