Skip to content

Commit 3a6d39b

Browse files
authored
Initial reading (#8)
* change maicos to scatterkit in the docs * remove sympy * Add __init__ to lib * remove init * deactivate doctests
1 parent aa81472 commit 3a6d39b

11 files changed

Lines changed: 24 additions & 39 deletions

File tree

.github/ISSUE_TEMPLATE/Bug.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ What happened instead. Add as much detail as you can. Include (copy and paste) s
2020
**Code to reproduce the behavior**
2121

2222
<!--
23-
Show us how to reproduce the failiure. If you can, use trajectory files from the test data folder in `tests/data` or `https://github.com/maicos-devel/maicos/tree/main/tests/data`
23+
Show us how to reproduce the failiure. If you can, use trajectory files from the test data folder in `tests/data` or `https://github.com/maicos-devel/scatterkit/tree/main/tests/data`
2424
2525
You can also attach (small) files to the section below or add URLs where to download an archive with all necessary files.
2626
2727
Please try to create an input set that is as minimal and small as possible and reproduces the bug as quickly as possible.
2828
2929
``` python
30-
import maicos
30+
import scatterkit
3131
3232
....
3333
@@ -39,7 +39,7 @@ import maicos
3939
<!--
4040
Please complete the following information to help us understand the issue better.
4141
42-
- Which version are you using? (run `python -c "import maicos as mda; print(maicos.__version__)"`)
42+
- Which version are you using? (run `python -c "import scatterkit; print(scatterkit.__version__)"`)
4343
- Which version of Python (`python -V`)?
4444
- Which operating system?
4545
---

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
environment:
7272
name: pypi
73-
url: https://pypi.org/project/maicos
73+
url: https://pypi.org/project/scatterkit
7474
permissions:
7575
id-token: write
7676
contents: write

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ CHANGELOG file
99
- keep the format consistent (79 char width, Y/M/D date format) and do not
1010
use tabs but use spaces for formatting
1111
12+
Unreleased
13+
----------
14+
Henrik Stooß
15+
16+
- Update the documentation (#8)
17+
1218
v0.0.1 (2025/08/05)
1319
-------------------
1420
Kira Fischer, Philip Loche

docs/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
# -- Extension configuration -------------------------------------------------
205205

206206
# Configuration for intersphinx: refer to the Python standard library
207-
# and other packages used by MAICoS
207+
# and other packages used by scatterkit
208208
intersphinx_mapping = {
209209
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
210210
"matplotlib": ("https://matplotlib.org/stable/", None),

docs/src/contributors.rst

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,6 @@
11
Contributors
22
############
33

4-
Thank you to all of the developers, programmers, and researchers who
5-
contributed to the creation of MAICoS.
6-
7-
We also thank the `Institute for Computational Physics`_ (University of
8-
Stuttgart), group members of `Roland Netz`_ at Freie Universität Berlin,
9-
and the Stuttgart Center for Simulation Science and the German Research
10-
Council (DFG) for funding through the Cluster of Excellence `EXC 2075`_
11-
"Data-integrated Simulation Science".
12-
13-
History
14-
-------
15-
16-
MAICoS was first developed in `Roland Netz`_'s group at the Freie University of
17-
Berlin by `Alexander Schlaich`_ and `Philip Loche`_, and is now mostly developed
18-
and maintained at the `Institute for Physics of functional Materials`_ (Hamburg University of Technology).
19-
20-
.. _Roland Netz: https://www.physik.fu-berlin.de/en/einrichtungen/ag/ag-netz/index.html
21-
.. _Philip Loche: https://people.epfl.ch/philip.loche
22-
.. _Alexander Schlaich: https://tuhh.de/ipfm/people/schlaich
23-
.. _Institute for Computational Physics: https://www.icp.uni-stuttgart.de/
24-
.. _EXC 2075: https://www.simtech.uni-stuttgart.de/exc/
25-
.. _Institute for Physics of functional Materials: https://www.tuhh.de/ipfm/
4+
This project exists thanks to all the people who contribute.
265

276
.. include:: ../../AUTHORS.rst

examples/README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ How-to guides
44
=============
55

66
Like a cooking recipe, How-to guides help you solve key problems and use cases. If you
7-
are a total MAICoS beginner, you should start with the :ref:`userdoc-get-started`
7+
are a total scatterkit beginner, you should start with the :ref:`userdoc-get-started`
88
section. Otherwise this section consists of introductory examples and examples
9-
demonstrating specific features of MAICoS' using its Python API.
9+
demonstrating specific features of scatterkit using its Python API.
1010

11-
For running the examples install maicos with the ``examples`` optional dependencies.
11+
For running the examples install scatterkit with the ``examples`` optional dependencies.
1212

1313
.. code-block:: bash
1414
15-
pip install maicos[examples]
15+
pip install scatterkit[examples]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Released under the GNU Public Licence, v3 or any higher version
77
# SPDX-License-Identifier: GPL-3.0-or-later
8-
"""Setup file for MAICoS package.
8+
"""Setup file for scatterkit package.
99
1010
Credit to MDAnalysis setup.py.
1111
"""

src/scatterkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""scatterkit: SAXS analysis of MD trajectories."""
1+
"""scatterkit: scattering analysis of MD trajectories."""
22

33
__authors__ = "MAICoS Developer Team"
44

src/scatterkit/lib/_cmath.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cpdef tuple structure_factor(
2929
):
3030
r"""Calculates scattering vectors and corresponding structure factors.
3131
32-
Use via ``from maicos.lib.math import structure_factor``
32+
Use via ``from scatterkit.lib.math import structure_factor``
3333
3434
The structure factors are calculated according to
3535

tests/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ pytest-cov
55
pytest-mock
66
pytest-xdist
77
setuptools
8-
sympy

0 commit comments

Comments
 (0)