llg3d 1.2.0__tar.gz → 1.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
- This code was started by Clémentine Courtès <clementine.courtes@math.unistra.fr> as a jupyter notebook
1
+ This code was started by Clémentine Courtès <clementine.courtes@math.unistra.fr> (IRMA, Université de Strasbourg) as a jupyter notebook
2
2
  in 2022. It was then converted to a python package, optimized and parallelized with MPI
3
- by Matthieu Boileau <matthieu.boileau@math.unistra.fr>.
3
+ by Matthieu Boileau <matthieu.boileau@math.unistra.fr> (IRMA, CNRS).
4
+
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llg3d
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
5
- Author-email: IRMA <matthieu.boileau@math.unistra.fr>
5
+ Author-email: Clémentine Courtès <clementine.courtes@math.unistra.fr>, Matthieu Boileau <matthieu.boileau@math.unistra.fr>
6
6
  Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
7
7
  Classifier: Programming Language :: Python :: 3
8
8
  Classifier: License :: OSI Approved :: MIT License
@@ -29,6 +29,7 @@ Requires-Dist: sphinx-autobuild; extra == "doc"
29
29
  Requires-Dist: sphinx-prompt; extra == "doc"
30
30
  Requires-Dist: sphinx-last-updated-by-git; extra == "doc"
31
31
  Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
32
+ Requires-Dist: sphinxcontrib-bibtex; extra == "doc"
32
33
 
33
34
  # LLG3D: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
34
35
 
@@ -36,6 +37,7 @@ Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
36
37
  [![coverage report](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/coverage.svg)](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
37
38
  [![Latest Release](https://gitlab.math.unistra.fr/llg3d/llg3d/-/badges/release.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
38
39
  [![Doc](https://img.shields.io/badge/doc-sphinx-blue)](https://llg3d.pages.math.unistra.fr/llg3d/)
40
+ [![SWH](https://archive.softwareheritage.org/badge/origin/https://gitlab.math.unistra.fr/llg3d/llg3d/)](https://archive.softwareheritage.org/browse/origin/?origin_url=https://gitlab.math.unistra.fr/llg3d/llg3d)
39
41
 
40
42
  LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
41
43
 
@@ -4,6 +4,7 @@
4
4
  [![coverage report](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/coverage.svg)](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
5
5
  [![Latest Release](https://gitlab.math.unistra.fr/llg3d/llg3d/-/badges/release.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
6
6
  [![Doc](https://img.shields.io/badge/doc-sphinx-blue)](https://llg3d.pages.math.unistra.fr/llg3d/)
7
+ [![SWH](https://archive.softwareheritage.org/badge/origin/https://gitlab.math.unistra.fr/llg3d/llg3d/)](https://archive.softwareheritage.org/browse/origin/?origin_url=https://gitlab.math.unistra.fr/llg3d/llg3d)
7
8
 
8
9
  LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
9
10
 
@@ -1,13 +1,12 @@
1
1
  [build-system]
2
- requires = [
3
- "setuptools>=61.2",
4
- ]
2
+ requires = ["setuptools>=61.2"]
5
3
  build-backend = "setuptools.build_meta"
6
4
 
7
5
  [project]
8
6
  name = "llg3d"
9
7
  authors = [
10
- { name = "IRMA", email = "matthieu.boileau@math.unistra.fr" },
8
+ { name = "Clémentine Courtès", email = "clementine.courtes@math.unistra.fr" },
9
+ { name = "Matthieu Boileau", email = "matthieu.boileau@math.unistra.fr" },
11
10
  ]
12
11
  description = "Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D"
13
12
  classifiers = [
@@ -16,12 +15,7 @@ classifiers = [
16
15
  "Operating System :: OS Independent",
17
16
  ]
18
17
  requires-python = ">=3.6"
19
- dependencies = [
20
- "numpy",
21
- "mpi4py",
22
- "matplotlib",
23
- "scipy"
24
- ]
18
+ dependencies = ["numpy", "mpi4py", "matplotlib", "scipy"]
25
19
  dynamic = ["version"]
26
20
 
27
21
 
@@ -47,7 +41,8 @@ doc = [
47
41
  "sphinx-autobuild",
48
42
  "sphinx-prompt",
49
43
  "sphinx-last-updated-by-git",
50
- "sphinxcontrib-programoutput"
44
+ "sphinxcontrib-programoutput",
45
+ "sphinxcontrib-bibtex",
51
46
  ]
52
47
 
53
48
  [tool.setuptools]
@@ -65,4 +60,4 @@ attr = "llg3d.__version__"
65
60
 
66
61
  [tool.coverage.run]
67
62
  parallel = true
68
- source = ["src/"]
63
+ source = ["src/"]
@@ -0,0 +1 @@
1
+ __version__ = "1.4.0"
@@ -0,0 +1 @@
1
+ """Post-processing tools for LLG3D."""
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llg3d
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
5
- Author-email: IRMA <matthieu.boileau@math.unistra.fr>
5
+ Author-email: Clémentine Courtès <clementine.courtes@math.unistra.fr>, Matthieu Boileau <matthieu.boileau@math.unistra.fr>
6
6
  Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
7
7
  Classifier: Programming Language :: Python :: 3
8
8
  Classifier: License :: OSI Approved :: MIT License
@@ -29,6 +29,7 @@ Requires-Dist: sphinx-autobuild; extra == "doc"
29
29
  Requires-Dist: sphinx-prompt; extra == "doc"
30
30
  Requires-Dist: sphinx-last-updated-by-git; extra == "doc"
31
31
  Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
32
+ Requires-Dist: sphinxcontrib-bibtex; extra == "doc"
32
33
 
33
34
  # LLG3D: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
34
35
 
@@ -36,6 +37,7 @@ Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
36
37
  [![coverage report](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/coverage.svg)](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
37
38
  [![Latest Release](https://gitlab.math.unistra.fr/llg3d/llg3d/-/badges/release.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
38
39
  [![Doc](https://img.shields.io/badge/doc-sphinx-blue)](https://llg3d.pages.math.unistra.fr/llg3d/)
40
+ [![SWH](https://archive.softwareheritage.org/badge/origin/https://gitlab.math.unistra.fr/llg3d/llg3d/)](https://archive.softwareheritage.org/browse/origin/?origin_url=https://gitlab.math.unistra.fr/llg3d/llg3d)
39
41
 
40
42
  LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
41
43
 
@@ -13,6 +13,7 @@ sphinx-autobuild
13
13
  sphinx-prompt
14
14
  sphinx-last-updated-by-git
15
15
  sphinxcontrib-programoutput
16
+ sphinxcontrib-bibtex
16
17
 
17
18
  [test]
18
19
  pytest
@@ -1 +0,0 @@
1
- __version__ = "1.2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes