Skip to content

move diffpy files to src dir #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions diffpy/__init__.py

This file was deleted.

21 changes: 0 additions & 21 deletions diffpy/srmise/__init__.py

This file was deleted.

31 changes: 0 additions & 31 deletions diffpy/srmise/version.py

This file was deleted.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name = "diffpy.srmise"
dynamic=['version']
authors = [
{ name="Simon J.L. Billinge group", email="[email protected]" },
{name="Luke Granlund", email="[email protected]"},
]
maintainers = [
{ name="Simon J.L. Billinge group", email="[email protected]" },
Expand Down
23 changes: 23 additions & 0 deletions src/diffpy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python
##############################################################################
#
# (c) 2024 The Trustees of Columbia University in the City of New York.
# All rights reserved.
#
# File coded by: Billinge Group members and community contributors.
#
# See GitHub contributions for a more detailed list of contributors.
# https://github.com/diffpy/diffpy.srmise/graphs/contributors
#
# See LICENSE.rst for license information.
#
##############################################################################

"""Blank namespace package for module diffpy."""


from pkgutil import extend_path

__path__ = extend_path(__path__, __name__)

# End of file
24 changes: 24 additions & 0 deletions src/diffpy/srmise/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env python
##############################################################################
#
# (c) 2024 The Trustees of Columbia University in the City of New York.
# All rights reserved.
#
# File coded by: Billinge Group members and community contributors.
#
# See GitHub contributions for a more detailed list of contributors.
# https://github.com/diffpy/diffpy.srmise/graphs/contributors
#
# See LICENSE.rst for license information.
#
##############################################################################

"""Peak extraction and peak fitting tool for atomic pair distribution functions."""

# package version
from diffpy.srmise.version import __version__

# silence the pyflakes syntax checker
assert __version__ or True

# End of file
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading
Loading