-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env python | ||
############################################################################## | ||
# | ||
# (c) 2024 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.nmf_mapping/graphs/contributors | ||
# | ||
# See LICENSE.rst for license information. | ||
# | ||
############################################################################## | ||
|
||
"""Blank namespace package for module diffpy.""" | ||
|
||
|
||
from pkgutil import extend_path | ||
|
||
__path__ = extend_path(__path__, __name__) | ||
|
||
# End of file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env python | ||
############################################################################## | ||
# | ||
# (c) 2024 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.nmf_mapping/graphs/contributors | ||
# | ||
# See LICENSE.rst for license information. | ||
# | ||
############################################################################## | ||
|
||
"""Run NMF analysis on PDF and XRD data""" | ||
|
||
# package version | ||
from diffpy.nmf_mapping.version import __version__ | ||
|
||
# silence the pyflakes syntax checker | ||
assert __version__ or True | ||
|
||
# End of file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env python | ||
############################################################################## | ||
# | ||
# (c) 2024 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.nmf_mapping/graphs/contributors | ||
# | ||
# See LICENSE.rst for license information. | ||
# | ||
############################################################################## | ||
|
||
"""Definition of __version__.""" | ||
|
||
# We do not use the other three variables, but can be added back if needed. | ||
# __all__ = ["__date__", "__git_commit__", "__timestamp__", "__version__"] | ||
|
||
# obtain version information | ||
from importlib.metadata import version | ||
|
||
__version__ = version("diffpy.nmf_mapping") | ||
|
||
# End of file |