File tree Expand file tree Collapse file tree 3 files changed +12
-23
lines changed Expand file tree Collapse file tree 3 files changed +12
-23
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
##############################################################################
3
3
#
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.
9
5
# All rights reserved.
10
6
#
11
7
# File coded by: Billinge Group members and community contributors.
16
12
# See LICENSE.rst for license information.
17
13
#
18
14
##############################################################################
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
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
##############################################################################
3
3
#
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.
5
5
# All rights reserved.
6
6
#
7
- # File coded by: Billinge Group members and community contributors .
7
+ # File coded by: Simon Billinge, Billinge Group members.
8
8
#
9
9
# See GitHub contributions for a more detailed list of contributors.
10
10
# https://github.com/diffpy/diffpy.utils/graphs/contributors
11
11
#
12
12
# See LICENSE.rst for license information.
13
13
#
14
14
##############################################################################
15
- """Shared utilities for diffpy packages. """
15
+ """General utilities for analyzing diffraction data """
16
16
17
17
# package version
18
- from diffpy .utils .version import __version__
18
+ from diffpy .utils .version import __version__ # noqa
19
19
20
20
# silence the pyflakes syntax checker
21
21
assert __version__ or True
22
+
23
+ # End of file
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
##############################################################################
3
3
#
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.
5
5
# All rights reserved.
6
6
#
7
- # File coded by: Billinge Group members and community contributors .
7
+ # File coded by: Simon Billinge, Billinge Group members.
8
8
#
9
9
# 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
11
11
#
12
12
# See LICENSE.rst for license information.
13
13
#
21
21
from importlib .metadata import version
22
22
23
23
__version__ = version ("diffpy.utils" )
24
+
25
+ # End of file
You can’t perform that action at this time.
0 commit comments