Skip to content

Commit 9ecf5e8

Browse files
move diffpy files to src dir (#44)
* move diffpy files to src dir * [pre-commit.ci] auto fixes from pre-commit hooks * add Luke to authors --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f3cdb58 commit 9ecf5e8

40 files changed

+772
-78
lines changed

diffpy/__init__.py

Lines changed: 0 additions & 26 deletions
This file was deleted.

diffpy/srmise/__init__.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

diffpy/srmise/version.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ name = "diffpy.srmise"
77
dynamic=['version']
88
authors = [
99
{ name="Simon J.L. Billinge group", email="simon.billinge@gmail.com" },
10+
{name="Luke Granlund", email="granlund@pa.msu.edu"},
1011
]
1112
maintainers = [
1213
{ name="Simon J.L. Billinge group", email="simon.billinge@gmail.com" },

src/diffpy/__init__.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# (c) 2024 The Trustees of Columbia University in the City of New York.
5+
# All rights reserved.
6+
#
7+
# File coded by: Billinge Group members and community contributors.
8+
#
9+
# See GitHub contributions for a more detailed list of contributors.
10+
# https://github.com/diffpy/diffpy.srmise/graphs/contributors
11+
#
12+
# See LICENSE.rst for license information.
13+
#
14+
##############################################################################
15+
16+
"""Blank namespace package for module diffpy."""
17+
18+
19+
from pkgutil import extend_path
20+
21+
__path__ = extend_path(__path__, __name__)
22+
23+
# End of file

src/diffpy/srmise/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env python
2+
##############################################################################
3+
#
4+
# (c) 2024 The Trustees of Columbia University in the City of New York.
5+
# All rights reserved.
6+
#
7+
# File coded by: Billinge Group members and community contributors.
8+
#
9+
# See GitHub contributions for a more detailed list of contributors.
10+
# https://github.com/diffpy/diffpy.srmise/graphs/contributors
11+
#
12+
# See LICENSE.rst for license information.
13+
#
14+
##############################################################################
15+
16+
"""Peak extraction and peak fitting tool for atomic pair distribution functions."""
17+
18+
# package version
19+
from diffpy.srmise.version import __version__
20+
21+
# silence the pyflakes syntax checker
22+
assert __version__ or True
23+
24+
# End of file
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)