llg3d 1.2.0__tar.gz → 1.3.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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llg3d
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
5
5
  Author-email: IRMA <matthieu.boileau@math.unistra.fr>
6
6
  Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
@@ -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,14 +1,10 @@
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
- authors = [
10
- { name = "IRMA", email = "matthieu.boileau@math.unistra.fr" },
11
- ]
7
+ authors = [{ name = "IRMA", email = "matthieu.boileau@math.unistra.fr" }]
12
8
  description = "Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D"
13
9
  classifiers = [
14
10
  "Programming Language :: Python :: 3",
@@ -16,12 +12,7 @@ classifiers = [
16
12
  "Operating System :: OS Independent",
17
13
  ]
18
14
  requires-python = ">=3.6"
19
- dependencies = [
20
- "numpy",
21
- "mpi4py",
22
- "matplotlib",
23
- "scipy"
24
- ]
15
+ dependencies = ["numpy", "mpi4py", "matplotlib", "scipy"]
25
16
  dynamic = ["version"]
26
17
 
27
18
 
@@ -47,7 +38,8 @@ doc = [
47
38
  "sphinx-autobuild",
48
39
  "sphinx-prompt",
49
40
  "sphinx-last-updated-by-git",
50
- "sphinxcontrib-programoutput"
41
+ "sphinxcontrib-programoutput",
42
+ "sphinxcontrib-bibtex",
51
43
  ]
52
44
 
53
45
  [tool.setuptools]
@@ -65,4 +57,4 @@ attr = "llg3d.__version__"
65
57
 
66
58
  [tool.coverage.run]
67
59
  parallel = true
68
- source = ["src/"]
60
+ source = ["src/"]
@@ -0,0 +1 @@
1
+ __version__ = "1.3.0"
@@ -0,0 +1 @@
1
+ """Post-processing tools for LLG3D."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llg3d
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
5
5
  Author-email: IRMA <matthieu.boileau@math.unistra.fr>
6
6
  Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
@@ -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
File without changes