essdiffraction 25.2.1__tar.gz → 25.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.copier-answers.ess.yml +1 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.copier-answers.yml +1 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/docs.yml +3 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/nightly_at_main.yml +1 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/nightly_at_release.yml +1 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/release.yml +1 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/test.yml +12 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.gitignore +1 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.pre-commit-config.yaml +6 -4
- essdiffraction-25.5.0/PKG-INFO +56 -0
- essdiffraction-25.5.0/docs/_static/thumbnails/dream_advanced_powder_reduction_dark.svg +894 -0
- essdiffraction-25.5.0/docs/_static/thumbnails/dream_advanced_powder_reduction_light.svg +894 -0
- essdiffraction-25.5.0/docs/_static/thumbnails/dream_basic_powder_reduction_dark.svg +1295 -0
- essdiffraction-25.5.0/docs/_static/thumbnails/dream_basic_powder_reduction_light.svg +1295 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/conf.py +7 -0
- essdiffraction-25.5.0/docs/index.md +70 -0
- essdiffraction-25.5.0/docs/user-guide/common/index.md +9 -0
- {essdiffraction-25.2.1/docs/user-guide/sns-instruments → essdiffraction-25.5.0/docs/user-guide/common}/vanadium_processing.ipynb +17 -7
- essdiffraction-25.5.0/docs/user-guide/dream/dream-advanced-powder-reduction.ipynb +620 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/dream/dream-instrument-view.ipynb +5 -4
- essdiffraction-25.5.0/docs/user-guide/dream/dream-powder-reduction.ipynb +229 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/dream/dream-visualize-absorption.ipynb +12 -56
- essdiffraction-25.5.0/docs/user-guide/dream/index.md +57 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/dream/workflow-widget-dream.ipynb +4 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/index.md +3 -1
- essdiffraction-25.5.0/docs/user-guide/installation.md +16 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/sns-instruments/POWGEN_data_reduction.ipynb +3 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/sns-instruments/index.md +0 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/pyproject.toml +6 -6
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/base.in +3 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/base.txt +48 -36
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/basetest.txt +18 -12
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/ci.txt +18 -12
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/dev.txt +13 -13
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/docs.txt +23 -24
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/mypy.txt +3 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/nightly.txt +49 -35
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/static.txt +7 -7
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/test.txt +2 -2
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/wheels.txt +5 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/__init__.py +2 -2
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/data.py +92 -12
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/diagnostics.py +13 -7
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/instrument_view.py +17 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/io/geant4.py +22 -68
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/io/nexus.py +2 -2
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/parameters.py +4 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/workflow.py +42 -4
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/calibration.py +1 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/conversion.py +2 -98
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/correction.py +19 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/filtering.py +2 -2
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/grouping.py +23 -1
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/types.py +8 -26
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/data.py +108 -10
- essdiffraction-25.5.0/src/essdiffraction.egg-info/PKG-INFO +56 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/essdiffraction.egg-info/SOURCES.txt +14 -5
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/essdiffraction.egg-info/requires.txt +3 -3
- essdiffraction-25.5.0/tests/conftest.py +19 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/dream/geant4_reduction_test.py +41 -10
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/dream/instrument_view_test.py +17 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/dream/io/geant4_test.py +4 -3
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/dream/io/nexus_test.py +33 -2
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/snspowder/powgen/powgen_reduction_test.py +9 -5
- essdiffraction-25.5.0/tools/docs/dream-thumbnails.ipynb +259 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tools/dream-make-tof-lookup-table.ipynb +3 -4
- essdiffraction-25.5.0/tools/shrink_nexus.py +91 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tox.ini +2 -0
- essdiffraction-25.2.1/.github/ISSUE_TEMPLATE/blank.md +0 -8
- essdiffraction-25.2.1/PKG-INFO +0 -85
- essdiffraction-25.2.1/docs/index.md +0 -17
- essdiffraction-25.2.1/docs/user-guide/dream/dream-data-reduction.ipynb +0 -381
- essdiffraction-25.2.1/docs/user-guide/dream/index.md +0 -13
- essdiffraction-25.2.1/src/essdiffraction.egg-info/PKG-INFO +0 -85
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/ISSUE_TEMPLATE/high-level-requirement.yml +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/dependabot.yml +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/ci.yml +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/python-version-ci +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/unpinned.yml +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.github/workflows/weekly_windows_macos.yml +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/.python-version +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/CODE_OF_CONDUCT.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/CONTRIBUTING.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/LICENSE +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/MANIFEST.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/README.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/conda/meta.yaml +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_static/anaconda-icon.js +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_static/favicon.svg +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_static/logo-dark.svg +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_static/logo.svg +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_templates/class-template.rst +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_templates/doc_version.html +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/_templates/module-template.rst +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/about/bibliography.rst +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/about/index.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/api-reference/index.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/bibliography.bib +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/developer/coding-conventions.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/developer/dependency-management.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/developer/getting-started.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/developer/index.md +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/docs/user-guide/dream/dream-detector-diagnostics.ipynb +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/basetest.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/ci.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/dev.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/docs.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/make_base.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/mypy.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/nightly.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/static.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/test.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/requirements/wheels.in +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/resources/logo.svg +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/setup.cfg +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/diffraction/__init__.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/diffraction/py.typed +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/beamline.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/io/__init__.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/io/cif.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/dream/py.typed +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/__init__.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/_util.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/logging.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/masking.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/py.typed +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/smoothing.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/powder/transform.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/__init__.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/beamline.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/calibration.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/instrument_view.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/peaks.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/ess/snspowder/powgen/workflow.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/essdiffraction.egg-info/dependency_links.txt +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/src/essdiffraction.egg-info/top_level.txt +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/dream/diagnostics_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/dream/io/cif_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/package_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/powder/conversion_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/powder/correction_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/powder/filtering_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/powder/transform_test.py +0 -0
- {essdiffraction-25.2.1 → essdiffraction-25.5.0}/tests/snspowder/powgen/load_test.py +0 -0
- /essdiffraction-25.2.1/docs/user-guide/sns-instruments/preprocess_files.ipynb → /essdiffraction-25.5.0/tools/preprocess_pg3_files.ipynb +0 -0
|
@@ -65,11 +65,13 @@ jobs:
|
|
|
65
65
|
- run: tox -e linkcheck
|
|
66
66
|
if: ${{ inputs.linkcheck }}
|
|
67
67
|
- uses: actions/upload-artifact@v4
|
|
68
|
+
id: artifact-upload-step
|
|
68
69
|
with:
|
|
69
70
|
name: docs_html
|
|
70
71
|
path: html/
|
|
72
|
+
- run: echo "::notice::https://remote-unzip.deno.dev/${{ github.repository }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}"
|
|
71
73
|
|
|
72
|
-
- uses: JamesIves/github-pages-deploy-action@v4.7.
|
|
74
|
+
- uses: JamesIves/github-pages-deploy-action@v4.7.3
|
|
73
75
|
if: ${{ inputs.publish }}
|
|
74
76
|
with:
|
|
75
77
|
branch: gh-pages
|
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
68
68
|
if: github.event_name == 'release' && github.event.action == 'published'
|
|
69
69
|
steps:
|
|
70
70
|
- uses: actions/download-artifact@v4
|
|
71
|
-
- uses: pypa/gh-action-pypi-publish@v1.
|
|
71
|
+
- uses: pypa/gh-action-pypi-publish@v1.12.4
|
|
72
72
|
|
|
73
73
|
upload_conda:
|
|
74
74
|
name: Deploy Conda
|
|
@@ -20,6 +20,9 @@ on:
|
|
|
20
20
|
checkout_ref:
|
|
21
21
|
default: ''
|
|
22
22
|
type: string
|
|
23
|
+
test-artifacts-name:
|
|
24
|
+
default: ''
|
|
25
|
+
type: string
|
|
23
26
|
workflow_call:
|
|
24
27
|
inputs:
|
|
25
28
|
os-variant:
|
|
@@ -39,6 +42,9 @@ on:
|
|
|
39
42
|
checkout_ref:
|
|
40
43
|
default: ''
|
|
41
44
|
type: string
|
|
45
|
+
test-artifacts-name:
|
|
46
|
+
default: ''
|
|
47
|
+
type: string
|
|
42
48
|
|
|
43
49
|
jobs:
|
|
44
50
|
package-test:
|
|
@@ -71,9 +77,14 @@ jobs:
|
|
|
71
77
|
python-version: ${{ inputs.python-version }}
|
|
72
78
|
- run: python -m pip install --upgrade pip
|
|
73
79
|
- run: python -m pip install -r ${{ inputs.pip-recipe }}
|
|
74
|
-
- run: tox -e ${{ inputs.tox-env }}
|
|
80
|
+
- run: tox -e ${{ inputs.tox-env }} -- --file-output="tests_outputs"
|
|
75
81
|
- uses: actions/upload-artifact@v4
|
|
76
82
|
if: ${{ inputs.coverage-report }}
|
|
77
83
|
with:
|
|
78
84
|
name: CoverageReport
|
|
79
85
|
path: coverage_html/
|
|
86
|
+
- uses: actions/upload-artifact@v4
|
|
87
|
+
if: ${{ inputs.test-artifacts-name != '' }}
|
|
88
|
+
with:
|
|
89
|
+
name: ${{ inputs.test-artifacts-name }}
|
|
90
|
+
path: tests_outputs/
|
|
@@ -16,14 +16,14 @@ repos:
|
|
|
16
16
|
args: [ --markdown-linebreak-ext=md ]
|
|
17
17
|
exclude: '\.svg'
|
|
18
18
|
- repo: https://github.com/kynan/nbstripout
|
|
19
|
-
rev: 0.
|
|
19
|
+
rev: 0.8.1
|
|
20
20
|
hooks:
|
|
21
21
|
- id: nbstripout
|
|
22
22
|
types: [ "jupyter" ]
|
|
23
23
|
args: [ "--drop-empty-cells",
|
|
24
24
|
"--extra-keys 'metadata.language_info.version cell.metadata.jp-MarkdownHeadingCollapsed cell.metadata.pycharm'" ]
|
|
25
25
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
26
|
-
rev: v0.
|
|
26
|
+
rev: v0.11.9
|
|
27
27
|
hooks:
|
|
28
28
|
- id: ruff
|
|
29
29
|
args: [ --fix ]
|
|
@@ -31,11 +31,13 @@ repos:
|
|
|
31
31
|
- id: ruff-format
|
|
32
32
|
types_or: [ python, pyi ]
|
|
33
33
|
- repo: https://github.com/codespell-project/codespell
|
|
34
|
-
rev: v2.
|
|
34
|
+
rev: v2.4.1
|
|
35
35
|
hooks:
|
|
36
36
|
- id: codespell
|
|
37
37
|
additional_dependencies:
|
|
38
38
|
- tomli
|
|
39
|
+
exclude_types:
|
|
40
|
+
- svg
|
|
39
41
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
40
42
|
rev: v1.10.0
|
|
41
43
|
hooks:
|
|
@@ -47,7 +49,7 @@ repos:
|
|
|
47
49
|
- id: rst-inline-touching-normal
|
|
48
50
|
- id: text-unicode-replacement-char
|
|
49
51
|
- repo: https://github.com/rhysd/actionlint
|
|
50
|
-
rev: v1.7.
|
|
52
|
+
rev: v1.7.7
|
|
51
53
|
hooks:
|
|
52
54
|
- id: actionlint
|
|
53
55
|
# Disable because of false-positive SC2046
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: essdiffraction
|
|
3
|
+
Version: 25.5.0
|
|
4
|
+
Summary: Diffraction data reduction for the European Spallation Source
|
|
5
|
+
Author: Scipp contributors
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/scipp/essdiffraction/issues
|
|
8
|
+
Project-URL: Documentation, https://scipp.github.io/essdiffraction
|
|
9
|
+
Project-URL: Source, https://github.com/scipp/essdiffraction
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: dask
|
|
25
|
+
Requires-Dist: essreduce>=25.05.1
|
|
26
|
+
Requires-Dist: graphviz
|
|
27
|
+
Requires-Dist: numpy
|
|
28
|
+
Requires-Dist: plopp>=25.03.0
|
|
29
|
+
Requires-Dist: pythreejs
|
|
30
|
+
Requires-Dist: sciline>=25.04.1
|
|
31
|
+
Requires-Dist: scipp>=24.09.1
|
|
32
|
+
Requires-Dist: scippneutron>=25.02.0
|
|
33
|
+
Requires-Dist: scippnexus>=23.12.0
|
|
34
|
+
Requires-Dist: tof>=25.01.2
|
|
35
|
+
Provides-Extra: test
|
|
36
|
+
Requires-Dist: pandas; extra == "test"
|
|
37
|
+
Requires-Dist: pooch; extra == "test"
|
|
38
|
+
Requires-Dist: pytest; extra == "test"
|
|
39
|
+
Dynamic: license-file
|
|
40
|
+
|
|
41
|
+
[](CODE_OF_CONDUCT.md)
|
|
42
|
+
[](https://pypi.python.org/pypi/essdiffraction)
|
|
43
|
+
[](https://anaconda.org/scipp/essdiffraction)
|
|
44
|
+
[](LICENSE)
|
|
45
|
+
|
|
46
|
+
# ESSdiffraction
|
|
47
|
+
|
|
48
|
+
## About
|
|
49
|
+
|
|
50
|
+
Diffraction data reduction for the European Spallation Source
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
python -m pip install essdiffraction
|
|
56
|
+
```
|