forked from diffpy/diffpy.apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (20 loc) · 720 Bytes
/
__init__.py
File metadata and controls
23 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
##############################################################################
#
# (c) 2026 diffpy.apps contributors.
# All rights reserved.
#
# File coded by: Yuchen Xiao, Simon Billinge and members of the Billinge group.
#
# See GitHub contributions for a more detailed list of contributors.
# https://github.com/diffpy/diffpy.apps/graphs/contributors
#
# See LICENSE.rst for license information.
#
##############################################################################
"""User applications to help with tasks using diffpy packages."""
# package version
from diffpy.apps.version import __version__ # noqa
# silence the pyflakes syntax checker
assert __version__ or True
# End of file