File tree 2 files changed +21
-24
lines changed
2 files changed +21
-24
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) 2008 trustees of the Michigan State University.
7
- # All rights reserved.
4
+ # (c) 2024 The Trustees of Columbia University in the City of New York.
5
+ # All rights reserved.
8
6
#
9
- # File coded by: Pavol Juhas
7
+ # File coded by: Billinge Group members and community contributors.
10
8
#
11
- # See AUTHORS.txt for a list of people who contributed.
12
- # See LICENSE.txt for license information.
9
+ # See GitHub contributions for a more detailed list of contributors.
10
+ # https://github.com/diffpy/diffpy.pdfgui/graphs/contributors
11
+ #
12
+ # See LICENSE.rst for license information.
13
13
#
14
14
##############################################################################
15
15
16
- """diffpy - tools for structure analysis by diffraction.
17
-
18
- Blank namespace package.
19
- """
16
+ """Blank namespace package for module diffpy."""
20
17
21
18
22
19
from pkgutil import extend_path
23
20
24
21
__path__ = extend_path (__path__ , __name__ )
25
22
26
-
27
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
- # PDFgui by DANSE Diffraction group
5
- # Simon J. L. Billinge
6
- # (c) 2008 trustees of the Michigan State University.
7
- # All rights reserved.
4
+ # (c) 2024 The Trustees of Columbia University in the City of New York.
5
+ # All rights reserved.
8
6
#
9
- # File coded by: Pavol Juhas
7
+ # File coded by: Billinge Group members and community contributors.
10
8
#
11
- # See AUTHORS.txt for a list of people who contributed.
12
- # See LICENSE.txt for license information.
9
+ # See GitHub contributions for a more detailed list of contributors.
10
+ # https://github.com/diffpy/diffpy.pdfgui/graphs/contributors
11
+ #
12
+ # See LICENSE.rst for license information.
13
13
#
14
14
##############################################################################
15
15
16
- """Definition of __version__ and __date__."""
16
+ """Definition of __version__."""
17
+
18
+ # We do not use the other three variables, but can be added back if needed.
19
+ # __all__ = ["__date__", "__git_commit__", "__timestamp__", "__version__"]
17
20
18
- import os
19
- import time
20
- from importlib .metadata import distribution , version
21
+ # obtain version information
22
+ from importlib .metadata import version
21
23
22
- __date__ = time .ctime (os .path .getctime (distribution ("diffpy.pdfgui" )._path ))
23
24
__version__ = version ("diffpy.pdfgui" )
24
25
25
26
# End of file
You can’t perform that action at this time.
0 commit comments