forked from diffpy/diffpy.similarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
24 lines (21 loc) · 803 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
##############################################################################
#
# (c) 2025 The Trustees of Columbia University in the City of New York.
# All rights reserved.
#
# File coded by: Billinge Group members and community contributors.
#
# See GitHub contributions for a more detailed list of contributors.
# https://github.com/diffpy/diffpy.similarity/graphs/contributors
#
# See LICENSE.rst for license information.
#
##############################################################################
"""Python package for computing various structural similarity metrics and other
tasks related to structure similarity."""
# package version
from diffpy.similarity.version import __version__
# silence the pyflakes syntax checker
assert __version__ or True
# End of file