File tree Expand file tree Collapse file tree 6 files changed +677
-0
lines changed
Expand file tree Collapse file tree 6 files changed +677
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments