llg3d 1.2.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.
llg3d-1.2.0/AUTHORS ADDED
@@ -0,0 +1,3 @@
1
+ This code was started by Clémentine Courtès <clementine.courtes@math.unistra.fr> as a jupyter notebook
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>.
llg3d-1.2.0/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 IRMA
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
llg3d-1.2.0/PKG-INFO ADDED
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.1
2
+ Name: llg3d
3
+ Version: 1.2.0
4
+ Summary: Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D
5
+ Author-email: IRMA <matthieu.boileau@math.unistra.fr>
6
+ Project-URL: Homepage, https://gitlab.math.unistra.fr/llg3d/llg3d
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.6
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ License-File: AUTHORS
14
+ Requires-Dist: numpy
15
+ Requires-Dist: mpi4py
16
+ Requires-Dist: matplotlib
17
+ Requires-Dist: scipy
18
+ Provides-Extra: test
19
+ Requires-Dist: pytest; extra == "test"
20
+ Requires-Dist: pytest-cov; extra == "test"
21
+ Requires-Dist: pytest-mpi; extra == "test"
22
+ Provides-Extra: doc
23
+ Requires-Dist: Sphinx>=7.2.2; extra == "doc"
24
+ Requires-Dist: myst-parser; extra == "doc"
25
+ Requires-Dist: furo; extra == "doc"
26
+ Requires-Dist: nbsphinx; extra == "doc"
27
+ Requires-Dist: sphinx-copybutton; extra == "doc"
28
+ Requires-Dist: sphinx-autobuild; extra == "doc"
29
+ Requires-Dist: sphinx-prompt; extra == "doc"
30
+ Requires-Dist: sphinx-last-updated-by-git; extra == "doc"
31
+ Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
32
+
33
+ # LLG3D: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
34
+
35
+ [![pipeline status](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/pipeline.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/commits/main)
36
+ [![coverage report](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/coverage.svg)](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
37
+ [![Latest Release](https://gitlab.math.unistra.fr/llg3d/llg3d/-/badges/release.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
38
+ [![Doc](https://img.shields.io/badge/doc-sphinx-blue)](https://llg3d.pages.math.unistra.fr/llg3d/)
39
+
40
+ LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
41
+
42
+ See the [documentation](https://llg3d.pages.math.unistra.fr/llg3d/).
llg3d-1.2.0/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # LLG3D: A solver for the stochastic Landau-Lifshitz-Gilbert equation in 3D
2
+
3
+ [![pipeline status](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/pipeline.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/commits/main)
4
+ [![coverage report](https://gitlab.math.unistra.fr/llg3d/llg3d/badges/main/coverage.svg)](https://llg3d.pages.math.unistra.fr/llg3d/coverage)
5
+ [![Latest Release](https://gitlab.math.unistra.fr/llg3d/llg3d/-/badges/release.svg)](https://gitlab.math.unistra.fr/llg3d/llg3d/-/releases)
6
+ [![Doc](https://img.shields.io/badge/doc-sphinx-blue)](https://llg3d.pages.math.unistra.fr/llg3d/)
7
+
8
+ LLG3D is written in Python and utilizes the MPI library for parallelizing computations.
9
+
10
+ See the [documentation](https://llg3d.pages.math.unistra.fr/llg3d/).
@@ -0,0 +1,68 @@
1
+ [build-system]
2
+ requires = [
3
+ "setuptools>=61.2",
4
+ ]
5
+ build-backend = "setuptools.build_meta"
6
+
7
+ [project]
8
+ name = "llg3d"
9
+ authors = [
10
+ { name = "IRMA", email = "matthieu.boileau@math.unistra.fr" },
11
+ ]
12
+ description = "Solveur pour l'équation de Landau-Lifshitz-Gilbert stochastique en 3D"
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+ requires-python = ">=3.6"
19
+ dependencies = [
20
+ "numpy",
21
+ "mpi4py",
22
+ "matplotlib",
23
+ "scipy"
24
+ ]
25
+ dynamic = ["version"]
26
+
27
+
28
+ [project.readme]
29
+ file = "README.md"
30
+ content-type = "text/markdown"
31
+
32
+ [project.urls]
33
+ Homepage = "https://gitlab.math.unistra.fr/llg3d/llg3d"
34
+
35
+ [project.scripts]
36
+ llg3d = "llg3d.llg3d:main"
37
+ "llg3d.post" = "llg3d.post.temperature:main"
38
+
39
+ [project.optional-dependencies]
40
+ test = ["pytest", "pytest-cov", "pytest-mpi"]
41
+ doc = [
42
+ "Sphinx >= 7.2.2",
43
+ "myst-parser",
44
+ "furo",
45
+ "nbsphinx",
46
+ "sphinx-copybutton",
47
+ "sphinx-autobuild",
48
+ "sphinx-prompt",
49
+ "sphinx-last-updated-by-git",
50
+ "sphinxcontrib-programoutput"
51
+ ]
52
+
53
+ [tool.setuptools]
54
+ include-package-data = true
55
+
56
+ [tool.setuptools.package-dir]
57
+ "" = "src"
58
+
59
+ [tool.setuptools.packages.find]
60
+ where = ["src"]
61
+ namespaces = false
62
+
63
+ [tool.setuptools.dynamic.version]
64
+ attr = "llg3d.__version__"
65
+
66
+ [tool.coverage.run]
67
+ parallel = true
68
+ source = ["src/"]
llg3d-1.2.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ __version__ = "1.2.0"