foamlib 0.3.9__tar.gz → 0.3.10__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: foamlib
3
- Version: 0.3.9
3
+ Version: 0.3.10
4
4
  Summary: A Python interface for interacting with OpenFOAM
5
5
  Author-email: "Gabriel S. Gerlero" <ggerlero@cimec.unl.edu.ar>
6
6
  Project-URL: Homepage, https://github.com/gerlero/foamlib
@@ -28,22 +28,28 @@ License-File: LICENSE.txt
28
28
  Requires-Dist: aioshutil<2,>=1
29
29
  Requires-Dist: pyparsing<4,>=3
30
30
  Requires-Dist: typing-extensions<5,>=4; python_version < "3.11"
31
+ Provides-Extra: numpy
32
+ Requires-Dist: numpy<2,>=1; extra == "numpy"
31
33
  Provides-Extra: lint
32
34
  Requires-Dist: ruff; extra == "lint"
33
- Provides-Extra: typing
34
- Requires-Dist: mypy<2,>=1; extra == "typing"
35
- Requires-Dist: pytest<9,>=7; extra == "typing"
36
- Requires-Dist: pytest-asyncio<0.24,>=0.21; extra == "typing"
37
- Requires-Dist: numpy<2,>=1; extra == "typing"
38
35
  Provides-Extra: test
36
+ Requires-Dist: foamlib[numpy]; extra == "test"
39
37
  Requires-Dist: pytest<9,>=7; extra == "test"
40
38
  Requires-Dist: pytest-asyncio<0.24,>=0.21; extra == "test"
41
39
  Requires-Dist: pytest-cov; extra == "test"
42
- Requires-Dist: numpy<2,>=1; extra == "test"
40
+ Provides-Extra: typing
41
+ Requires-Dist: foamlib[test]; extra == "typing"
42
+ Requires-Dist: mypy<2,>=1; extra == "typing"
43
43
  Provides-Extra: docs
44
+ Requires-Dist: foamlib[numpy]; extra == "docs"
44
45
  Requires-Dist: sphinx<8,>=7; extra == "docs"
45
46
  Requires-Dist: sphinx_rtd_theme; extra == "docs"
46
- Requires-Dist: numpy<2,>=1; extra == "docs"
47
+ Provides-Extra: dev
48
+ Requires-Dist: foamlib[numpy]; extra == "dev"
49
+ Requires-Dist: foamlib[lint]; extra == "dev"
50
+ Requires-Dist: foamlib[test]; extra == "dev"
51
+ Requires-Dist: foamlib[typing]; extra == "dev"
52
+ Requires-Dist: foamlib[docs]; extra == "dev"
47
53
 
48
54
  [<img alt="foamlib" src="https://github.com/gerlero/foamlib/raw/main/logo.png" height="50">](https://github.com/gerlero/foamlib)
49
55
 
@@ -1,6 +1,6 @@
1
1
  """A Python interface for interacting with OpenFOAM."""
2
2
 
3
- __version__ = "0.3.9"
3
+ __version__ = "0.3.10"
4
4
 
5
5
  from ._cases import AsyncFoamCase, FoamCase, FoamCaseBase
6
6
  from ._files import FoamDict, FoamFieldFile, FoamFile
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: foamlib
3
- Version: 0.3.9
3
+ Version: 0.3.10
4
4
  Summary: A Python interface for interacting with OpenFOAM
5
5
  Author-email: "Gabriel S. Gerlero" <ggerlero@cimec.unl.edu.ar>
6
6
  Project-URL: Homepage, https://github.com/gerlero/foamlib
@@ -28,22 +28,28 @@ License-File: LICENSE.txt
28
28
  Requires-Dist: aioshutil<2,>=1
29
29
  Requires-Dist: pyparsing<4,>=3
30
30
  Requires-Dist: typing-extensions<5,>=4; python_version < "3.11"
31
+ Provides-Extra: numpy
32
+ Requires-Dist: numpy<2,>=1; extra == "numpy"
31
33
  Provides-Extra: lint
32
34
  Requires-Dist: ruff; extra == "lint"
33
- Provides-Extra: typing
34
- Requires-Dist: mypy<2,>=1; extra == "typing"
35
- Requires-Dist: pytest<9,>=7; extra == "typing"
36
- Requires-Dist: pytest-asyncio<0.24,>=0.21; extra == "typing"
37
- Requires-Dist: numpy<2,>=1; extra == "typing"
38
35
  Provides-Extra: test
36
+ Requires-Dist: foamlib[numpy]; extra == "test"
39
37
  Requires-Dist: pytest<9,>=7; extra == "test"
40
38
  Requires-Dist: pytest-asyncio<0.24,>=0.21; extra == "test"
41
39
  Requires-Dist: pytest-cov; extra == "test"
42
- Requires-Dist: numpy<2,>=1; extra == "test"
40
+ Provides-Extra: typing
41
+ Requires-Dist: foamlib[test]; extra == "typing"
42
+ Requires-Dist: mypy<2,>=1; extra == "typing"
43
43
  Provides-Extra: docs
44
+ Requires-Dist: foamlib[numpy]; extra == "docs"
44
45
  Requires-Dist: sphinx<8,>=7; extra == "docs"
45
46
  Requires-Dist: sphinx_rtd_theme; extra == "docs"
46
- Requires-Dist: numpy<2,>=1; extra == "docs"
47
+ Provides-Extra: dev
48
+ Requires-Dist: foamlib[numpy]; extra == "dev"
49
+ Requires-Dist: foamlib[lint]; extra == "dev"
50
+ Requires-Dist: foamlib[test]; extra == "dev"
51
+ Requires-Dist: foamlib[typing]; extra == "dev"
52
+ Requires-Dist: foamlib[docs]; extra == "dev"
47
53
 
48
54
  [<img alt="foamlib" src="https://github.com/gerlero/foamlib/raw/main/logo.png" height="50">](https://github.com/gerlero/foamlib)
49
55
 
@@ -4,22 +4,30 @@ pyparsing<4,>=3
4
4
  [:python_version < "3.11"]
5
5
  typing-extensions<5,>=4
6
6
 
7
+ [dev]
8
+ foamlib[numpy]
9
+ foamlib[lint]
10
+ foamlib[test]
11
+ foamlib[typing]
12
+ foamlib[docs]
13
+
7
14
  [docs]
15
+ foamlib[numpy]
8
16
  sphinx<8,>=7
9
17
  sphinx_rtd_theme
10
- numpy<2,>=1
11
18
 
12
19
  [lint]
13
20
  ruff
14
21
 
22
+ [numpy]
23
+ numpy<2,>=1
24
+
15
25
  [test]
26
+ foamlib[numpy]
16
27
  pytest<9,>=7
17
28
  pytest-asyncio<0.24,>=0.21
18
29
  pytest-cov
19
- numpy<2,>=1
20
30
 
21
31
  [typing]
32
+ foamlib[test]
22
33
  mypy<2,>=1
23
- pytest<9,>=7
24
- pytest-asyncio<0.24,>=0.21
25
- numpy<2,>=1
@@ -36,23 +36,29 @@ dependencies = [
36
36
  dynamic = ["version"]
37
37
 
38
38
  [project.optional-dependencies]
39
+ numpy = ["numpy>=1,<2"]
39
40
  lint = ["ruff"]
40
- typing = [
41
- "mypy>=1,<2",
42
- "pytest>=7,<9",
43
- "pytest-asyncio>=0.21,<0.24",
44
- "numpy>=1,<2",
45
- ]
46
41
  test = [
42
+ "foamlib[numpy]",
47
43
  "pytest>=7,<9",
48
44
  "pytest-asyncio>=0.21,<0.24",
49
45
  "pytest-cov",
50
- "numpy>=1,<2",
46
+ ]
47
+ typing = [
48
+ "foamlib[test]",
49
+ "mypy>=1,<2",
51
50
  ]
52
51
  docs = [
52
+ "foamlib[numpy]",
53
53
  "sphinx>=7,<8",
54
54
  "sphinx_rtd_theme",
55
- "numpy>=1,<2",
55
+ ]
56
+ dev = [
57
+ "foamlib[numpy]",
58
+ "foamlib[lint]",
59
+ "foamlib[test]",
60
+ "foamlib[typing]",
61
+ "foamlib[docs]",
56
62
  ]
57
63
 
58
64
  [project.urls]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes