diffpy.fourigui 0.1.0rc0__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.
Files changed (36) hide show
  1. diffpy_fourigui-0.1.0rc0/AUTHORS.rst +10 -0
  2. diffpy_fourigui-0.1.0rc0/LICENSE.rst +30 -0
  3. diffpy_fourigui-0.1.0rc0/MANIFEST.in +12 -0
  4. diffpy_fourigui-0.1.0rc0/PKG-INFO +154 -0
  5. diffpy_fourigui-0.1.0rc0/README.rst +121 -0
  6. diffpy_fourigui-0.1.0rc0/pyproject.toml +75 -0
  7. diffpy_fourigui-0.1.0rc0/requirements/build.txt +0 -0
  8. diffpy_fourigui-0.1.0rc0/requirements/conda.txt +5 -0
  9. diffpy_fourigui-0.1.0rc0/requirements/docs.txt +4 -0
  10. diffpy_fourigui-0.1.0rc0/requirements/pip.txt +5 -0
  11. diffpy_fourigui-0.1.0rc0/requirements/test.txt +6 -0
  12. diffpy_fourigui-0.1.0rc0/setup.cfg +4 -0
  13. diffpy_fourigui-0.1.0rc0/src/diffpy/__init__.py +23 -0
  14. diffpy_fourigui-0.1.0rc0/src/diffpy/fourigui/__init__.py +24 -0
  15. diffpy_fourigui-0.1.0rc0/src/diffpy/fourigui/fourigui.py +571 -0
  16. diffpy_fourigui-0.1.0rc0/src/diffpy/fourigui/version.py +26 -0
  17. diffpy_fourigui-0.1.0rc0/src/diffpy.fourigui.egg-info/PKG-INFO +154 -0
  18. diffpy_fourigui-0.1.0rc0/src/diffpy.fourigui.egg-info/SOURCES.txt +34 -0
  19. diffpy_fourigui-0.1.0rc0/src/diffpy.fourigui.egg-info/dependency_links.txt +1 -0
  20. diffpy_fourigui-0.1.0rc0/src/diffpy.fourigui.egg-info/requires.txt +5 -0
  21. diffpy_fourigui-0.1.0rc0/src/diffpy.fourigui.egg-info/top_level.txt +1 -0
  22. diffpy_fourigui-0.1.0rc0/tests/conftest.py +19 -0
  23. diffpy_fourigui-0.1.0rc0/tests/integration_test.py +130 -0
  24. diffpy_fourigui-0.1.0rc0/tests/test_version.py +10 -0
  25. diffpy_fourigui-0.1.0rc0/tests/testdata/__init__.py +0 -0
  26. diffpy_fourigui-0.1.0rc0/tests/testdata/dummydata.h5 +0 -0
  27. diffpy_fourigui-0.1.0rc0/tests/testdata/gofr.h5 +0 -0
  28. diffpy_fourigui-0.1.0rc0/tests/testdata/gofr_.h5 +0 -0
  29. diffpy_fourigui-0.1.0rc0/tests/testdata/gofr_cut.h5 +0 -0
  30. diffpy_fourigui-0.1.0rc0/tests/testdata/gofr_from_sofq_cut_10to40px.h5 +0 -0
  31. diffpy_fourigui-0.1.0rc0/tests/testdata/gofr_from_sofq_cut_15to35px.h5 +0 -0
  32. diffpy_fourigui-0.1.0rc0/tests/testdata/make_testdata.py +52 -0
  33. diffpy_fourigui-0.1.0rc0/tests/testdata/sofq.h5 +0 -0
  34. diffpy_fourigui-0.1.0rc0/tests/testdata/sofq_cut_10to40px.h5 +0 -0
  35. diffpy_fourigui-0.1.0rc0/tests/testdata/sofq_cut_15to35px.h5 +0 -0
  36. diffpy_fourigui-0.1.0rc0/tests/unit_test.py +150 -0
@@ -0,0 +1,10 @@
1
+ Authors
2
+ =======
3
+
4
+ Billinge Group and community contributors.
5
+
6
+ Contributors
7
+ ------------
8
+
9
+ For a list of contributors, visit
10
+ https://github.com/diffpy/diffpy.fourigui/graphs/contributors
@@ -0,0 +1,30 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2024, The Trustees of Columbia University
4
+ in the City of New York.
5
+ All rights reserved.
6
+
7
+ Redistribution and use in source and binary forms, with or without
8
+ modification, are permitted provided that the following conditions are met:
9
+
10
+ 1. Redistributions of source code must retain the above copyright notice, this
11
+ list of conditions and the following disclaimer.
12
+
13
+ 2. Redistributions in binary form must reproduce the above copyright notice,
14
+ this list of conditions and the following disclaimer in the documentation
15
+ and/or other materials provided with the distribution.
16
+
17
+ 3. Neither the name of the copyright holder nor the names of its contributors
18
+ may be used to endorse or promote products derived from this software
19
+ without specific prior written permission.
20
+
21
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,12 @@
1
+ graft src
2
+ graft tests
3
+ graft requirements
4
+
5
+ include AUTHORS.rst LICENSE*.rst README.rst
6
+
7
+ # Exclude all bytecode files and __pycache__ directories
8
+ global-exclude *.py[cod] # Exclude all .pyc, .pyo, and .pyd files.
9
+ global-exclude .DS_Store # Exclude Mac filesystem artifacts.
10
+ global-exclude __pycache__ # Exclude Python cache directories.
11
+ global-exclude .git* # Exclude git files and directories.
12
+ global-exclude .idea # Exclude PyCharm project settings.
@@ -0,0 +1,154 @@
1
+ Metadata-Version: 2.1
2
+ Name: diffpy.fourigui
3
+ Version: 0.1.0rc0
4
+ Summary: Tool for visualizing 3D diffraction and PDF Images.
5
+ Author-email: "Simon J.L. Billinge group" <simon.billinge@gmail.com>
6
+ Maintainer-email: "Simon J.L. Billinge group" <simon.billinge@gmail.com>
7
+ Project-URL: Homepage, https://github.com/diffpy/diffpy.fourigui/
8
+ Project-URL: Issues, https://github.com/diffpy/diffpy.fourigui/issues/
9
+ Keywords: diffraction,pdf,pair distribution function,gui
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: License :: OSI Approved :: BSD License
15
+ Classifier: Operating System :: MacOS :: MacOS X
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Operating System :: Unix
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Scientific/Engineering :: Physics
23
+ Classifier: Topic :: Scientific/Engineering :: Chemistry
24
+ Requires-Python: >=3.10
25
+ Description-Content-Type: text/x-rst
26
+ License-File: LICENSE.rst
27
+ License-File: AUTHORS.rst
28
+ Requires-Dist: h5py
29
+ Requires-Dist: time
30
+ Requires-Dist: tk
31
+ Requires-Dist: matplotlib
32
+ Requires-Dist: numpy
33
+
34
+ |Icon| |title|_
35
+ ===============
36
+
37
+ .. |title| replace:: diffpy.fourigui
38
+ .. _title: https://diffpy.github.io/diffpy.fourigui
39
+
40
+ .. |Icon| image:: https://avatars.githubusercontent.com/diffpy
41
+ :target: https://diffpy.github.io/diffpy.fourigui
42
+ :height: 100px
43
+
44
+ |PyPi| |Forge| |PythonVersion| |PR|
45
+
46
+ |CI| |Codecov| |Black| |Tracking|
47
+
48
+ .. |Black| image:: https://img.shields.io/badge/code_style-black-black
49
+ :target: https://github.com/psf/black
50
+
51
+ .. |CI| image:: https://github.com/diffpy/diffpy.fourigui/actions/workflows/matrix-and-codecov-on-merge-to-main.yml/badge.svg
52
+ :target: https://github.com/diffpy/diffpy.fourigui/actions/workflows/matrix-and-codecov-on-merge-to-main.yml
53
+
54
+ .. |Codecov| image:: https://codecov.io/gh/diffpy/diffpy.fourigui/branch/main/graph/badge.svg
55
+ :target: https://codecov.io/gh/diffpy/diffpy.fourigui
56
+
57
+ .. |Forge| image:: https://img.shields.io/conda/vn/conda-forge/diffpy.fourigui
58
+ :target: https://anaconda.org/conda-forge/diffpy.fourigui
59
+
60
+ .. |PR| image:: https://img.shields.io/badge/PR-Welcome-29ab47ff
61
+
62
+ .. |PyPi| image:: https://img.shields.io/pypi/v/diffpy.fourigui
63
+ :target: https://pypi.org/project/diffpy.fourigui/
64
+
65
+ .. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/diffpy.fourigui
66
+ :target: https://pypi.org/project/diffpy.fourigui/
67
+
68
+ .. |Tracking| image:: https://img.shields.io/badge/issue_tracking-github-blue
69
+ :target: https://github.com/diffpy/diffpy.fourigui/issues
70
+
71
+ Tool for visualizing 3D diffraction and PDF Images.
72
+
73
+ * LONGER DESCRIPTION HERE
74
+
75
+ For more information about the diffpy.fourigui library, please consult our `online documentation <https://diffpy.github.io/diffpy.fourigui>`_.
76
+
77
+ Citation
78
+ --------
79
+
80
+ If you use diffpy.fourigui in a scientific publication, we would like you to cite this package as
81
+
82
+ diffpy.fourigui Package, https://github.com/diffpy/diffpy.fourigui
83
+
84
+ Installation
85
+ ------------
86
+
87
+ The preferred method is to use `Miniconda Python
88
+ <https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html>`_
89
+ and install from the "conda-forge" channel of Conda packages.
90
+
91
+ To add "conda-forge" to the conda channels, run the following in a terminal. ::
92
+
93
+ conda config --add channels conda-forge
94
+
95
+ We want to install our packages in a suitable conda environment.
96
+ The following creates and activates a new environment named ``diffpy.fourigui_env`` ::
97
+
98
+ conda create -n diffpy.fourigui_env python=3
99
+ conda activate diffpy.fourigui_env
100
+
101
+ Then, to fully install ``diffpy.fourigui`` in our active environment, run ::
102
+
103
+ conda install diffpy.fourigui
104
+
105
+ Another option is to use ``pip`` to download and install the latest release from
106
+ `Python Package Index <https://pypi.python.org>`_.
107
+ To install using ``pip`` into your ``diffpy.fourigui_env`` environment, we will also have to install dependencies ::
108
+
109
+ pip install -r https://raw.githubusercontent.com/diffpy/diffpy.fourigui/main/requirements/run.txt
110
+
111
+ and then install the package ::
112
+
113
+ pip install diffpy.fourigui
114
+
115
+ If you prefer to install from sources, after installing the dependencies, obtain the source archive from
116
+ `GitHub <https://github.com/diffpy/diffpy.fourigui/>`_. Once installed, ``cd`` into your ``diffpy.fourigui`` directory
117
+ and run the following ::
118
+
119
+ pip install .
120
+
121
+ Support and Contribute
122
+ ----------------------
123
+
124
+ `Diffpy user group <https://groups.google.com/g/diffpy-users>`_ is the discussion forum for general questions and discussions about the use of diffpy.fourigui. Please join the diffpy.fourigui users community by joining the Google group. The diffpy.fourigui project welcomes your expertise and enthusiasm!
125
+
126
+ If you see a bug or want to request a feature, please `report it as an issue <https://github.com/diffpy/diffpy.fourigui/issues>`_ and/or `submit a fix as a PR <https://github.com/diffpy/diffpy.fourigui/pulls>`_. You can also post it to the `Diffpy user group <https://groups.google.com/g/diffpy-users>`_.
127
+
128
+ Feel free to fork the project and contribute. To install diffpy.fourigui
129
+ in a development mode, with its sources being directly used by Python
130
+ rather than copied to a package directory, use the following in the root
131
+ directory ::
132
+
133
+ pip install -e .
134
+
135
+ To ensure code quality and to prevent accidental commits into the default branch, please set up the use of our pre-commit
136
+ hooks.
137
+
138
+ 1. Install pre-commit in your working environment by running ``conda install pre-commit``.
139
+
140
+ 2. Initialize pre-commit (one time only) ``pre-commit install``.
141
+
142
+ Thereafter your code will be linted by black and isort and checked against flake8 before you can commit.
143
+ If it fails by black or isort, just rerun and it should pass (black and isort will modify the files so should
144
+ pass after they are modified). If the flake8 test fails please see the error messages and fix them manually before
145
+ trying to commit again.
146
+
147
+ Improvements and fixes are always appreciated.
148
+
149
+ Before contribuing, please read our `Code of Conduct <https://github.com/diffpy/diffpy.fourigui/blob/main/CODE_OF_CONDUCT.rst>`_.
150
+
151
+ Contact
152
+ -------
153
+
154
+ For more information on diffpy.fourigui please visit the project `web-page <https://diffpy.github.io/>`_ or email Prof. Simon Billinge at sb2896@columbia.edu.
@@ -0,0 +1,121 @@
1
+ |Icon| |title|_
2
+ ===============
3
+
4
+ .. |title| replace:: diffpy.fourigui
5
+ .. _title: https://diffpy.github.io/diffpy.fourigui
6
+
7
+ .. |Icon| image:: https://avatars.githubusercontent.com/diffpy
8
+ :target: https://diffpy.github.io/diffpy.fourigui
9
+ :height: 100px
10
+
11
+ |PyPi| |Forge| |PythonVersion| |PR|
12
+
13
+ |CI| |Codecov| |Black| |Tracking|
14
+
15
+ .. |Black| image:: https://img.shields.io/badge/code_style-black-black
16
+ :target: https://github.com/psf/black
17
+
18
+ .. |CI| image:: https://github.com/diffpy/diffpy.fourigui/actions/workflows/matrix-and-codecov-on-merge-to-main.yml/badge.svg
19
+ :target: https://github.com/diffpy/diffpy.fourigui/actions/workflows/matrix-and-codecov-on-merge-to-main.yml
20
+
21
+ .. |Codecov| image:: https://codecov.io/gh/diffpy/diffpy.fourigui/branch/main/graph/badge.svg
22
+ :target: https://codecov.io/gh/diffpy/diffpy.fourigui
23
+
24
+ .. |Forge| image:: https://img.shields.io/conda/vn/conda-forge/diffpy.fourigui
25
+ :target: https://anaconda.org/conda-forge/diffpy.fourigui
26
+
27
+ .. |PR| image:: https://img.shields.io/badge/PR-Welcome-29ab47ff
28
+
29
+ .. |PyPi| image:: https://img.shields.io/pypi/v/diffpy.fourigui
30
+ :target: https://pypi.org/project/diffpy.fourigui/
31
+
32
+ .. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/diffpy.fourigui
33
+ :target: https://pypi.org/project/diffpy.fourigui/
34
+
35
+ .. |Tracking| image:: https://img.shields.io/badge/issue_tracking-github-blue
36
+ :target: https://github.com/diffpy/diffpy.fourigui/issues
37
+
38
+ Tool for visualizing 3D diffraction and PDF Images.
39
+
40
+ * LONGER DESCRIPTION HERE
41
+
42
+ For more information about the diffpy.fourigui library, please consult our `online documentation <https://diffpy.github.io/diffpy.fourigui>`_.
43
+
44
+ Citation
45
+ --------
46
+
47
+ If you use diffpy.fourigui in a scientific publication, we would like you to cite this package as
48
+
49
+ diffpy.fourigui Package, https://github.com/diffpy/diffpy.fourigui
50
+
51
+ Installation
52
+ ------------
53
+
54
+ The preferred method is to use `Miniconda Python
55
+ <https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html>`_
56
+ and install from the "conda-forge" channel of Conda packages.
57
+
58
+ To add "conda-forge" to the conda channels, run the following in a terminal. ::
59
+
60
+ conda config --add channels conda-forge
61
+
62
+ We want to install our packages in a suitable conda environment.
63
+ The following creates and activates a new environment named ``diffpy.fourigui_env`` ::
64
+
65
+ conda create -n diffpy.fourigui_env python=3
66
+ conda activate diffpy.fourigui_env
67
+
68
+ Then, to fully install ``diffpy.fourigui`` in our active environment, run ::
69
+
70
+ conda install diffpy.fourigui
71
+
72
+ Another option is to use ``pip`` to download and install the latest release from
73
+ `Python Package Index <https://pypi.python.org>`_.
74
+ To install using ``pip`` into your ``diffpy.fourigui_env`` environment, we will also have to install dependencies ::
75
+
76
+ pip install -r https://raw.githubusercontent.com/diffpy/diffpy.fourigui/main/requirements/run.txt
77
+
78
+ and then install the package ::
79
+
80
+ pip install diffpy.fourigui
81
+
82
+ If you prefer to install from sources, after installing the dependencies, obtain the source archive from
83
+ `GitHub <https://github.com/diffpy/diffpy.fourigui/>`_. Once installed, ``cd`` into your ``diffpy.fourigui`` directory
84
+ and run the following ::
85
+
86
+ pip install .
87
+
88
+ Support and Contribute
89
+ ----------------------
90
+
91
+ `Diffpy user group <https://groups.google.com/g/diffpy-users>`_ is the discussion forum for general questions and discussions about the use of diffpy.fourigui. Please join the diffpy.fourigui users community by joining the Google group. The diffpy.fourigui project welcomes your expertise and enthusiasm!
92
+
93
+ If you see a bug or want to request a feature, please `report it as an issue <https://github.com/diffpy/diffpy.fourigui/issues>`_ and/or `submit a fix as a PR <https://github.com/diffpy/diffpy.fourigui/pulls>`_. You can also post it to the `Diffpy user group <https://groups.google.com/g/diffpy-users>`_.
94
+
95
+ Feel free to fork the project and contribute. To install diffpy.fourigui
96
+ in a development mode, with its sources being directly used by Python
97
+ rather than copied to a package directory, use the following in the root
98
+ directory ::
99
+
100
+ pip install -e .
101
+
102
+ To ensure code quality and to prevent accidental commits into the default branch, please set up the use of our pre-commit
103
+ hooks.
104
+
105
+ 1. Install pre-commit in your working environment by running ``conda install pre-commit``.
106
+
107
+ 2. Initialize pre-commit (one time only) ``pre-commit install``.
108
+
109
+ Thereafter your code will be linted by black and isort and checked against flake8 before you can commit.
110
+ If it fails by black or isort, just rerun and it should pass (black and isort will modify the files so should
111
+ pass after they are modified). If the flake8 test fails please see the error messages and fix them manually before
112
+ trying to commit again.
113
+
114
+ Improvements and fixes are always appreciated.
115
+
116
+ Before contribuing, please read our `Code of Conduct <https://github.com/diffpy/diffpy.fourigui/blob/main/CODE_OF_CONDUCT.rst>`_.
117
+
118
+ Contact
119
+ -------
120
+
121
+ For more information on diffpy.fourigui please visit the project `web-page <https://diffpy.github.io/>`_ or email Prof. Simon Billinge at sb2896@columbia.edu.
@@ -0,0 +1,75 @@
1
+ [build-system]
2
+ requires = ["setuptools>=62.0", "setuptools-git-versioning>=2.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "diffpy.fourigui"
7
+ dynamic=['version', 'dependencies']
8
+ authors = [
9
+ { name="Simon J.L. Billinge group", email="simon.billinge@gmail.com" },
10
+ ]
11
+ maintainers = [
12
+ { name="Simon J.L. Billinge group", email="simon.billinge@gmail.com" },
13
+ ]
14
+ description = "Tool for visualizing 3D diffraction and PDF Images."
15
+ keywords = ['diffraction', 'pdf', 'pair distribution function', 'gui']
16
+ readme = "README.rst"
17
+ requires-python = ">=3.10"
18
+ classifiers = [
19
+ 'Development Status :: 5 - Production/Stable',
20
+ 'Environment :: Console',
21
+ 'Intended Audience :: Developers',
22
+ 'Intended Audience :: Science/Research',
23
+ 'License :: OSI Approved :: BSD License',
24
+ 'Operating System :: MacOS :: MacOS X',
25
+ 'Operating System :: Microsoft :: Windows',
26
+ 'Operating System :: POSIX',
27
+ 'Operating System :: Unix',
28
+ 'Programming Language :: Python :: 3.10',
29
+ 'Programming Language :: Python :: 3.11',
30
+ 'Programming Language :: Python :: 3.12',
31
+ 'Topic :: Scientific/Engineering :: Physics',
32
+ 'Topic :: Scientific/Engineering :: Chemistry',
33
+ ]
34
+
35
+ [project.urls]
36
+ Homepage = "https://github.com/diffpy/diffpy.fourigui/"
37
+ Issues = "https://github.com/diffpy/diffpy.fourigui/issues/"
38
+
39
+ [tool.setuptools-git-versioning]
40
+ enabled = true
41
+ template = "{tag}"
42
+ dev_template = "{tag}"
43
+ dirty_template = "{tag}"
44
+
45
+ [tool.setuptools.packages.find]
46
+ where = ["src"] # list of folders that contain the packages (["."] by default)
47
+ include = ["*"] # package names should match these glob patterns (["*"] by default)
48
+ exclude = [] # exclude packages matching these glob patterns (empty by default)
49
+ namespaces = false # to disable scanning PEP 420 namespaces (true by default)
50
+
51
+ [tool.setuptools.dynamic]
52
+ dependencies = {file = ["requirements/pip.txt"]}
53
+
54
+ [tool.black]
55
+ line-length = 115
56
+ include = '\.pyi?$'
57
+ exclude = '''
58
+ /(
59
+ \.git
60
+ | \.hg
61
+ | \.mypy_cache
62
+ | \.tox
63
+ | \.venv
64
+ | \.rst
65
+ | \.txt
66
+ | _build
67
+ | buck-out
68
+ | build
69
+ | dist
70
+
71
+ # The following are specific to Black, you probably don't want those.
72
+ | blib2to3
73
+ | tests/data
74
+ )/
75
+ '''
File without changes
@@ -0,0 +1,5 @@
1
+ h5py
2
+ time
3
+ tk
4
+ matplotlib-base
5
+ numpy
@@ -0,0 +1,4 @@
1
+ sphinx
2
+ sphinx_rtd_theme
3
+ doctr
4
+ m2r
@@ -0,0 +1,5 @@
1
+ h5py
2
+ time
3
+ tk
4
+ matplotlib
5
+ numpy
@@ -0,0 +1,6 @@
1
+ flake8
2
+ pytest
3
+ codecov
4
+ coverage
5
+ pytest-cov
6
+ pytest-env
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env python
2
+ ##############################################################################
3
+ #
4
+ # (c) 2024 The Trustees of Columbia University in the City of New York.
5
+ # All rights reserved.
6
+ #
7
+ # File coded by: Billinge Group members and community contributors.
8
+ #
9
+ # See GitHub contributions for a more detailed list of contributors.
10
+ # https://github.com/diffpy/diffpy.fourigui/graphs/contributors
11
+ #
12
+ # See LICENSE.rst for license information.
13
+ #
14
+ ##############################################################################
15
+
16
+ """Blank namespace package for module diffpy."""
17
+
18
+
19
+ from pkgutil import extend_path
20
+
21
+ __path__ = extend_path(__path__, __name__)
22
+
23
+ # End of file
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env python
2
+ ##############################################################################
3
+ #
4
+ # (c) 2024 The Trustees of Columbia University in the City of New York.
5
+ # All rights reserved.
6
+ #
7
+ # File coded by: Billinge Group members and community contributors.
8
+ #
9
+ # See GitHub contributions for a more detailed list of contributors.
10
+ # https://github.com/diffpy/diffpy.fourigui/graphs/contributors
11
+ #
12
+ # See LICENSE.rst for license information.
13
+ #
14
+ ##############################################################################
15
+
16
+ """Tool for visualizing 3D diffraction and PDF Images."""
17
+
18
+ # package version
19
+ from diffpy.fourigui.version import __version__
20
+
21
+ # silence the pyflakes syntax checker
22
+ assert __version__ or True
23
+
24
+ # End of file