forked from diffpy/diffpy.srmise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (21 loc) · 747 Bytes
/
__init__.py
File metadata and controls
25 lines (21 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
##############################################################################
#
# (c) 2025 The Trustees of Columbia University in the City of New York.
# All rights reserved.
#
# File coded by: Simon Billinge, Billinge Group members.
#
# See GitHub contributions for a more detailed list of contributors.
# https://github.com/diffpy/diffpy.srmise/graphs/contributors
#
# See LICENSE.rst for license information.
#
##############################################################################
"""Peak extraction and peak fitting tool for atomic pair distribution
functions."""
# package version
from diffpy.srmise.version import __version__
# silence the pyflakes syntax checker
assert __version__ or True
# End of file