Skip to content
Open
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
1 change: 0 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ Release notes

* Support scikit-package Level 5 standard (https://scikit-package.github.io/scikit-package/).
* Port legacy Python 2 code to support Python 3.

30 changes: 30 additions & 0 deletions docs/source/api/diffpy.srxplanargui.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
:tocdepth: -1

|title|
=======

.. |title| replace:: diffpy.srxplanargui package

.. automodule:: diffpy.srxplanargui
:members:
:undoc-members:
:show-inheritance:

Subpackages
-----------

.. toctree::
diffpy.srxplanargui.example_package

Submodules
----------

|module|
--------

.. |module| replace:: diffpy.srxplanargui.example_submodule module

.. automodule:: diffpy.srxplanargui.example_submodule
:members:
:undoc-members:
:show-inheritance:
23 changes: 23 additions & 0 deletions news/add-planargui.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* Add the diffpy.srxplanargui package to this repository.

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
24 changes: 24 additions & 0 deletions news/doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
**Added:**

* <news item>

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* Change "diffpy.srxplanargui" from python 2 to python 3 architecture.
* Support ``scikit-package`` Level 5 standard (https://scikit-package.github.io/scikit-package/).

**Security:**

* <news item>
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ namespaces = false # to disable scanning PEP 420 namespaces (true by default)

[project.scripts]
diffpy-srxconfutils = "diffpy.srxconfutils.srxconfutils_app:main"
diffpy-srxplanargui = "diffpy.srxplanargui.srxplanargui_app:main"

[tool.setuptools.dynamic]
dependencies = {file = ["requirements/pip.txt"]}
Expand Down
5 changes: 5 additions & 0 deletions requirements/conda.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
numpy
traits
traitsui
fabio
pyface
scipy
pyfai
matplotlib
7 changes: 7 additions & 0 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
numpy
traits
traitsui
chaco
pyface
scipy
fabio
pyfai
matplotlib
diffpy.srxplanar
23 changes: 23 additions & 0 deletions src/diffpy/srxplanargui/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python
##############################################################################
#
# (c) 2012-2025 The Trustees of Columbia University in the City of New York.
# All rights reserved.
#
# File coded by: Xiaohao Yang, Billinge Group members.
#
# See GitHub contributions for a more detailed list of contributors.
# https://github.com/diffpy/diffpy.srxplanargui/graphs/contributors
#
# See LICENSE.rst for license information.
#
##############################################################################
"""XPDFsuite, a software for PDF transformation and visualization."""

# package version
from diffpy.srxplanargui.version import __version__ # noqa

# silence the pyflakes syntax checker
assert __version__ or True

# End of file
Loading
Loading