Skip to content

Commit 6977f3e

Browse files
committed
skpkg: mirate src folder
1 parent a51b553 commit 6977f3e

File tree

3 files changed

+12
-23
lines changed

3 files changed

+12
-23
lines changed

src/diffpy/__init__.py

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
#!/usr/bin/env python
22
##############################################################################
33
#
4-
# diffpy by DANSE Diffraction group
5-
# Simon J. L. Billinge
6-
# (c) 2010 The Trustees of Columbia University
7-
# in the City of New York. All rights reserved.
8-
# (c) 2024 The Trustees of Columbia University in the City of New York.
4+
# (c) 2025 The Trustees of Columbia University in the City of New York.
95
# All rights reserved.
106
#
117
# File coded by: Billinge Group members and community contributors.
@@ -16,14 +12,3 @@
1612
# See LICENSE.rst for license information.
1713
#
1814
##############################################################################
19-
"""diffpy - tools for structure analysis by diffraction.
20-
21-
Blank namespace package.
22-
"""
23-
24-
25-
from pkgutil import extend_path
26-
27-
__path__ = extend_path(__path__, __name__)
28-
29-
# End of file

src/diffpy/utils/__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
#!/usr/bin/env python
22
##############################################################################
33
#
4-
# (c) 2024 The Trustees of Columbia University in the City of New York.
4+
# (c) 2025 The Trustees of Columbia University in the City of New York.
55
# All rights reserved.
66
#
7-
# File coded by: Billinge Group members and community contributors.
7+
# File coded by: Simon Billinge, Billinge Group members.
88
#
99
# See GitHub contributions for a more detailed list of contributors.
1010
# https://github.com/diffpy/diffpy.utils/graphs/contributors
1111
#
1212
# See LICENSE.rst for license information.
1313
#
1414
##############################################################################
15-
"""Shared utilities for diffpy packages."""
15+
"""General utilities for analyzing diffraction data"""
1616

1717
# package version
18-
from diffpy.utils.version import __version__
18+
from diffpy.utils.version import __version__ # noqa
1919

2020
# silence the pyflakes syntax checker
2121
assert __version__ or True
22+
23+
# End of file

src/diffpy/utils/version.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/usr/bin/env python
22
##############################################################################
33
#
4-
# (c) 2024 The Trustees of Columbia University in the City of New York.
4+
# (c) 2025 The Trustees of Columbia University in the City of New York.
55
# All rights reserved.
66
#
7-
# File coded by: Billinge Group members and community contributors.
7+
# File coded by: Simon Billinge, Billinge Group members.
88
#
99
# See GitHub contributions for a more detailed list of contributors.
10-
# https://github.com/diffpy/diffpy.utils/graphs/contributors
10+
# https://github.com/diffpy/diffpy.utils/graphs/contributors # noqa: E501
1111
#
1212
# See LICENSE.rst for license information.
1313
#
@@ -21,3 +21,5 @@
2121
from importlib.metadata import version
2222

2323
__version__ = version("diffpy.utils")
24+
25+
# End of file

0 commit comments

Comments
 (0)