Skip to content

Commit 1f63c40

Browse files
committed
changelog, reqs docs, __init
1 parent 7f8bc92 commit 1f63c40

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
==========================
1+
=============
22
Release Notes
3-
==========================
3+
=============
44

55
.. current developments
66

requirements/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
sphinx
22
sphinx_rtd_theme
3-
m2r
43
doctr
4+
m2r

src/diffpy/pdfmorph/__init__.py

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
#!/usr/bin/env python
22
##############################################################################
33
#
4-
# pdfmorph by DANSE Diffraction group
5-
# Simon J. L. Billinge
6-
# (c) 2006 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.
86
#
9-
# File coded by: Chris Farrow
7+
# File coded by: Billinge Group members and community contributors.
108
#
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.pdfmorph/graphs/contributors
11+
#
12+
# See LICENSE.rst for license information.
1313
#
1414
##############################################################################
1515

16-
"""Tools for manipulating and comparing PDFs.
17-
"""
16+
"""Tools for manipulating and comparing PDF profiles"""
1817

19-
# top-level import
20-
from diffpy.pdfmorph.pdfmorph_api import morph_default_config, pdfmorph, plot_morph # noqa: F401
18+
# package version
19+
from diffpy.pdfmorph.version import __version__
2120

22-
# key used when saving multiple morphs
23-
__save_morph_as__ = "save_morph_as"
21+
# silence the pyflakes syntax checker
22+
assert __version__ or True
2423

2524
# End of file

0 commit comments

Comments
 (0)