|
3 | 3 | # |
4 | 4 | # (c) 2008-2025 The Trustees of Columbia University in the City of New York. |
5 | 5 | # All rights reserved. |
| 6 | +# (c) 2026-present The DiffPy Team. All rights reserved. |
6 | 7 | # |
7 | | -# File coded by: Christopher Farrow, Pavol Juhas, and members of the |
8 | | -# Billinge Group. |
| 8 | +# File coded by: Christopher Farrow, Pavol Juhas, Caden Myers, |
| 9 | +# Simon J. L. Billinge, and members of the DiffPy community. |
9 | 10 | # |
10 | 11 | # See GitHub contributions for a more detailed list of contributors. |
11 | 12 | # https://github.com/diffpy/diffpy.srfit/graphs/contributors |
12 | 13 | # |
13 | 14 | # See LICENSE.rst for license information. |
14 | 15 | # |
15 | 16 | ############################################################################## |
16 | | -"""Complex modeling framework for structure refinement and solution. |
17 | | -
|
18 | | -SrFit is a tool for coherently combining known information about a |
19 | | -material to derive other properties, in particular material structure. |
20 | | -SrFit allows the customization and creation of structure |
21 | | -representations, profile calculators, constraints, restraints and file |
22 | | -input parsers. The customized pieces can be glued together within SrFit |
23 | | -to optimize a structure, or other physically relevant information from |
24 | | -one or more experimental profiles. Other known information about the |
25 | | -system of interest can be included with arbitrarily complex constraints |
26 | | -and restraints. In this way, the end user creates a customized fitting |
27 | | -application that suits the problem to the available information. |
28 | | -
|
29 | | -The subpackages herein define various pieces of the SrFit framework. |
30 | | -Developers are encouraged to work through the examples described in the |
31 | | -documentation to learn how to use and customize the various parts of |
32 | | -SrFit. |
33 | | -""" |
| 17 | +"""Generalized code base for modeling problems.""" |
34 | 18 |
|
35 | 19 | # package version |
36 | | -from diffpy.srfit.version import __version__ |
| 20 | +from diffpy.srfit.version import __version__ # noqa |
37 | 21 |
|
38 | 22 | # silence the pyflakes syntax checker |
39 | 23 | assert __version__ or True |
|
0 commit comments