mnpbem 0.1.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.
- mnpbem-0.1.0/MANIFEST.in +6 -0
- mnpbem-0.1.0/PKG-INFO +88 -0
- mnpbem-0.1.0/README.md +58 -0
- mnpbem-0.1.0/pyproject.toml +49 -0
- mnpbem-0.1.0/setup.cfg +4 -0
- mnpbem-0.1.0/src/mnpbem/__init__.py +48 -0
- mnpbem-0.1.0/src/mnpbem.egg-info/PKG-INFO +88 -0
- mnpbem-0.1.0/src/mnpbem.egg-info/SOURCES.txt +9 -0
- mnpbem-0.1.0/src/mnpbem.egg-info/dependency_links.txt +1 -0
- mnpbem-0.1.0/src/mnpbem.egg-info/requires.txt +13 -0
- mnpbem-0.1.0/src/mnpbem.egg-info/top_level.txt +1 -0
mnpbem-0.1.0/MANIFEST.in
ADDED
mnpbem-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mnpbem
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Meta-package that installs all MNPBEM Python submodules.
|
|
5
|
+
Author-email: GALIH RIDHO UTOMO <g4lihru@students.unnes.ac.id>
|
|
6
|
+
License-Expression: GPL-2.0-only
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/mnpbem/
|
|
8
|
+
Project-URL: Repository, https://github.com/galihru/mnpbem/tree/main/mnpbem
|
|
9
|
+
Project-URL: Source, https://github.com/galihru/mnpbem
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: mnpbem-base>=0.1.0
|
|
18
|
+
Requires-Dist: mnpbem-bem>=0.1.0
|
|
19
|
+
Requires-Dist: mnpbem-demo>=0.1.0
|
|
20
|
+
Requires-Dist: mnpbem-demo-mnpbem>=0.1.0
|
|
21
|
+
Requires-Dist: mnpbem-greenfun>=0.1.0
|
|
22
|
+
Requires-Dist: mnpbem-help>=0.1.0
|
|
23
|
+
Requires-Dist: mnpbem-material>=0.1.0
|
|
24
|
+
Requires-Dist: mnpbem-mesh2d>=0.1.0
|
|
25
|
+
Requires-Dist: mnpbem-mex>=0.1.0
|
|
26
|
+
Requires-Dist: mnpbem-mie>=0.1.0
|
|
27
|
+
Requires-Dist: mnpbem-misc>=0.1.0
|
|
28
|
+
Requires-Dist: mnpbem-particles>=0.1.0
|
|
29
|
+
Requires-Dist: mnpbem-simulation>=0.1.0
|
|
30
|
+
|
|
31
|
+
# mnpbem
|
|
32
|
+
|
|
33
|
+
[](https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml)
|
|
34
|
+
[](https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml)
|
|
35
|
+
|
|
36
|
+
`mnpbem` is the umbrella meta-package for the scientific Python conversion of the MNPBEM ecosystem.
|
|
37
|
+
Installing `mnpbem` installs all submodules required for boundary-element plasmonics workflows.
|
|
38
|
+
|
|
39
|
+
## Scientific Overview
|
|
40
|
+
The package family targets frequency-domain formulations of nanoplasmonic problems, typically represented as:
|
|
41
|
+
|
|
42
|
+
$$
|
|
43
|
+
\mathbf{A}(\lambda)\,\mathbf{x}(\lambda)=\mathbf{b}(\lambda)
|
|
44
|
+
$$
|
|
45
|
+
|
|
46
|
+
where geometry, material dispersion, kernels, and solvers are decomposed into dedicated submodules.
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
PyPI publication for `mnpbem` is pending first release.
|
|
50
|
+
|
|
51
|
+
Track publication status:
|
|
52
|
+
- https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml
|
|
53
|
+
|
|
54
|
+
Install from repository source:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pip install git+https://github.com/galihru/mnpbem.git#subdirectory=mnpbem
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Submodule Map
|
|
61
|
+
| Submodule | Scientific role | PyPI |
|
|
62
|
+
| --- | --- | --- |
|
|
63
|
+
| `mnpbem-base` | Registry and factory for task-dependent solver selection | https://pypi.org/project/mnpbem-base/ |
|
|
64
|
+
| `mnpbem-bem` | Linear response solver kernels | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbembem.yml |
|
|
65
|
+
| `mnpbem-demo` | Reproducible spectral-grid demos | https://pypi.org/project/mnpbem-demo/ |
|
|
66
|
+
| `mnpbem-demo-mnpbem` | Extended demo orchestration layer | https://pypi.org/project/mnpbem-demo-mnpbem/ |
|
|
67
|
+
| `mnpbem-greenfun` | Green-function kernels for wave propagation | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemgreenfun.yml |
|
|
68
|
+
| `mnpbem-help` | Documentation and reference module index | https://pypi.org/project/mnpbem-help/ |
|
|
69
|
+
| `mnpbem-material` | Dispersive dielectric models and tabulated optical data | https://pypi.org/project/mnpbem-material/ |
|
|
70
|
+
| `mnpbem-mesh2d` | Triangle geometry operators for 2D meshes | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemmesh2d.yml |
|
|
71
|
+
| `mnpbem-mex` | Optional acceleration backend probing interface | https://pypi.org/project/mnpbem-mex/ |
|
|
72
|
+
| `mnpbem-mie` | Rayleigh/Mie small-particle scattering approximations | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemmie.yml |
|
|
73
|
+
| `mnpbem-misc` | Core linear algebra and unit conversion utilities | https://pypi.org/project/mnpbem-misc/ |
|
|
74
|
+
| `mnpbem-particles` | Particle geometry primitives | https://pypi.org/project/mnpbem-particles/ |
|
|
75
|
+
| `mnpbem-simulation` | Spectrum orchestration over wavelength grids | https://pypi.org/project/mnpbem-simulation/ |
|
|
76
|
+
|
|
77
|
+
## Example
|
|
78
|
+
Runnable example:
|
|
79
|
+
- `examples/basic_usage.py`
|
|
80
|
+
|
|
81
|
+
Run:
|
|
82
|
+
```bash
|
|
83
|
+
python examples/basic_usage.py
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Author
|
|
87
|
+
- GALIH RIDHO UTOMO
|
|
88
|
+
- g4lihru@students.unnes.ac.id
|
mnpbem-0.1.0/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# mnpbem
|
|
2
|
+
|
|
3
|
+
[](https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml)
|
|
4
|
+
[](https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml)
|
|
5
|
+
|
|
6
|
+
`mnpbem` is the umbrella meta-package for the scientific Python conversion of the MNPBEM ecosystem.
|
|
7
|
+
Installing `mnpbem` installs all submodules required for boundary-element plasmonics workflows.
|
|
8
|
+
|
|
9
|
+
## Scientific Overview
|
|
10
|
+
The package family targets frequency-domain formulations of nanoplasmonic problems, typically represented as:
|
|
11
|
+
|
|
12
|
+
$$
|
|
13
|
+
\mathbf{A}(\lambda)\,\mathbf{x}(\lambda)=\mathbf{b}(\lambda)
|
|
14
|
+
$$
|
|
15
|
+
|
|
16
|
+
where geometry, material dispersion, kernels, and solvers are decomposed into dedicated submodules.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
PyPI publication for `mnpbem` is pending first release.
|
|
20
|
+
|
|
21
|
+
Track publication status:
|
|
22
|
+
- https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml
|
|
23
|
+
|
|
24
|
+
Install from repository source:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install git+https://github.com/galihru/mnpbem.git#subdirectory=mnpbem
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Submodule Map
|
|
31
|
+
| Submodule | Scientific role | PyPI |
|
|
32
|
+
| --- | --- | --- |
|
|
33
|
+
| `mnpbem-base` | Registry and factory for task-dependent solver selection | https://pypi.org/project/mnpbem-base/ |
|
|
34
|
+
| `mnpbem-bem` | Linear response solver kernels | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbembem.yml |
|
|
35
|
+
| `mnpbem-demo` | Reproducible spectral-grid demos | https://pypi.org/project/mnpbem-demo/ |
|
|
36
|
+
| `mnpbem-demo-mnpbem` | Extended demo orchestration layer | https://pypi.org/project/mnpbem-demo-mnpbem/ |
|
|
37
|
+
| `mnpbem-greenfun` | Green-function kernels for wave propagation | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemgreenfun.yml |
|
|
38
|
+
| `mnpbem-help` | Documentation and reference module index | https://pypi.org/project/mnpbem-help/ |
|
|
39
|
+
| `mnpbem-material` | Dispersive dielectric models and tabulated optical data | https://pypi.org/project/mnpbem-material/ |
|
|
40
|
+
| `mnpbem-mesh2d` | Triangle geometry operators for 2D meshes | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemmesh2d.yml |
|
|
41
|
+
| `mnpbem-mex` | Optional acceleration backend probing interface | https://pypi.org/project/mnpbem-mex/ |
|
|
42
|
+
| `mnpbem-mie` | Rayleigh/Mie small-particle scattering approximations | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemmie.yml |
|
|
43
|
+
| `mnpbem-misc` | Core linear algebra and unit conversion utilities | https://pypi.org/project/mnpbem-misc/ |
|
|
44
|
+
| `mnpbem-particles` | Particle geometry primitives | https://pypi.org/project/mnpbem-particles/ |
|
|
45
|
+
| `mnpbem-simulation` | Spectrum orchestration over wavelength grids | https://pypi.org/project/mnpbem-simulation/ |
|
|
46
|
+
|
|
47
|
+
## Example
|
|
48
|
+
Runnable example:
|
|
49
|
+
- `examples/basic_usage.py`
|
|
50
|
+
|
|
51
|
+
Run:
|
|
52
|
+
```bash
|
|
53
|
+
python examples/basic_usage.py
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Author
|
|
57
|
+
- GALIH RIDHO UTOMO
|
|
58
|
+
- g4lihru@students.unnes.ac.id
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mnpbem"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Meta-package that installs all MNPBEM Python submodules."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "GALIH RIDHO UTOMO", email = "g4lihru@students.unnes.ac.id" }
|
|
13
|
+
]
|
|
14
|
+
license = "GPL-2.0-only"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Physics"
|
|
21
|
+
]
|
|
22
|
+
dependencies = [
|
|
23
|
+
"mnpbem-base>=0.1.0",
|
|
24
|
+
"mnpbem-bem>=0.1.0",
|
|
25
|
+
"mnpbem-demo>=0.1.0",
|
|
26
|
+
"mnpbem-demo-mnpbem>=0.1.0",
|
|
27
|
+
"mnpbem-greenfun>=0.1.0",
|
|
28
|
+
"mnpbem-help>=0.1.0",
|
|
29
|
+
"mnpbem-material>=0.1.0",
|
|
30
|
+
"mnpbem-mesh2d>=0.1.0",
|
|
31
|
+
"mnpbem-mex>=0.1.0",
|
|
32
|
+
"mnpbem-mie>=0.1.0",
|
|
33
|
+
"mnpbem-misc>=0.1.0",
|
|
34
|
+
"mnpbem-particles>=0.1.0",
|
|
35
|
+
"mnpbem-simulation>=0.1.0",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://pypi.org/project/mnpbem/"
|
|
40
|
+
Repository = "https://github.com/galihru/mnpbem/tree/main/mnpbem"
|
|
41
|
+
Source = "https://github.com/galihru/mnpbem"
|
|
42
|
+
[tool.setuptools]
|
|
43
|
+
package-dir = {"" = "src"}
|
|
44
|
+
|
|
45
|
+
[tool.setuptools.packages.find]
|
|
46
|
+
where = ["src"]
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
mnpbem-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"""Meta-package that installs all MNPBEM Python submodules."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
5
|
+
|
|
6
|
+
import importlib
|
|
7
|
+
|
|
8
|
+
SUBMODULES = (
|
|
9
|
+
"mnpbem_base",
|
|
10
|
+
"mnpbem_bem",
|
|
11
|
+
"mnpbem_demo",
|
|
12
|
+
"mnpbem_demo_mnpbem",
|
|
13
|
+
"mnpbem_greenfun",
|
|
14
|
+
"mnpbem_help",
|
|
15
|
+
"mnpbem_material",
|
|
16
|
+
"mnpbem_mesh2d",
|
|
17
|
+
"mnpbem_mex",
|
|
18
|
+
"mnpbem_mie",
|
|
19
|
+
"mnpbem_misc",
|
|
20
|
+
"mnpbem_particles",
|
|
21
|
+
"mnpbem_simulation",
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
__all__ = ["SUBMODULES", "available_submodules", "__version__", "module_status"]
|
|
25
|
+
|
|
26
|
+
try:
|
|
27
|
+
__version__ = version("mnpbem")
|
|
28
|
+
except PackageNotFoundError:
|
|
29
|
+
__version__ = "0.0.0"
|
|
30
|
+
|
|
31
|
+
def available_submodules() -> list[str]:
|
|
32
|
+
"""Return installed MNPBEM submodules discoverable in current environment."""
|
|
33
|
+
installed: list[str] = []
|
|
34
|
+
for name in SUBMODULES:
|
|
35
|
+
if importlib.util.find_spec(name) is not None:
|
|
36
|
+
installed.append(name)
|
|
37
|
+
return installed
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def module_status() -> str:
|
|
41
|
+
"""Return the package maturity level for this submodule."""
|
|
42
|
+
return "alpha"
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mnpbem
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Meta-package that installs all MNPBEM Python submodules.
|
|
5
|
+
Author-email: GALIH RIDHO UTOMO <g4lihru@students.unnes.ac.id>
|
|
6
|
+
License-Expression: GPL-2.0-only
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/mnpbem/
|
|
8
|
+
Project-URL: Repository, https://github.com/galihru/mnpbem/tree/main/mnpbem
|
|
9
|
+
Project-URL: Source, https://github.com/galihru/mnpbem
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: mnpbem-base>=0.1.0
|
|
18
|
+
Requires-Dist: mnpbem-bem>=0.1.0
|
|
19
|
+
Requires-Dist: mnpbem-demo>=0.1.0
|
|
20
|
+
Requires-Dist: mnpbem-demo-mnpbem>=0.1.0
|
|
21
|
+
Requires-Dist: mnpbem-greenfun>=0.1.0
|
|
22
|
+
Requires-Dist: mnpbem-help>=0.1.0
|
|
23
|
+
Requires-Dist: mnpbem-material>=0.1.0
|
|
24
|
+
Requires-Dist: mnpbem-mesh2d>=0.1.0
|
|
25
|
+
Requires-Dist: mnpbem-mex>=0.1.0
|
|
26
|
+
Requires-Dist: mnpbem-mie>=0.1.0
|
|
27
|
+
Requires-Dist: mnpbem-misc>=0.1.0
|
|
28
|
+
Requires-Dist: mnpbem-particles>=0.1.0
|
|
29
|
+
Requires-Dist: mnpbem-simulation>=0.1.0
|
|
30
|
+
|
|
31
|
+
# mnpbem
|
|
32
|
+
|
|
33
|
+
[](https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml)
|
|
34
|
+
[](https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml)
|
|
35
|
+
|
|
36
|
+
`mnpbem` is the umbrella meta-package for the scientific Python conversion of the MNPBEM ecosystem.
|
|
37
|
+
Installing `mnpbem` installs all submodules required for boundary-element plasmonics workflows.
|
|
38
|
+
|
|
39
|
+
## Scientific Overview
|
|
40
|
+
The package family targets frequency-domain formulations of nanoplasmonic problems, typically represented as:
|
|
41
|
+
|
|
42
|
+
$$
|
|
43
|
+
\mathbf{A}(\lambda)\,\mathbf{x}(\lambda)=\mathbf{b}(\lambda)
|
|
44
|
+
$$
|
|
45
|
+
|
|
46
|
+
where geometry, material dispersion, kernels, and solvers are decomposed into dedicated submodules.
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
PyPI publication for `mnpbem` is pending first release.
|
|
50
|
+
|
|
51
|
+
Track publication status:
|
|
52
|
+
- https://github.com/galihru/mnpbem/actions/workflows/mnpbem.yml
|
|
53
|
+
|
|
54
|
+
Install from repository source:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pip install git+https://github.com/galihru/mnpbem.git#subdirectory=mnpbem
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Submodule Map
|
|
61
|
+
| Submodule | Scientific role | PyPI |
|
|
62
|
+
| --- | --- | --- |
|
|
63
|
+
| `mnpbem-base` | Registry and factory for task-dependent solver selection | https://pypi.org/project/mnpbem-base/ |
|
|
64
|
+
| `mnpbem-bem` | Linear response solver kernels | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbembem.yml |
|
|
65
|
+
| `mnpbem-demo` | Reproducible spectral-grid demos | https://pypi.org/project/mnpbem-demo/ |
|
|
66
|
+
| `mnpbem-demo-mnpbem` | Extended demo orchestration layer | https://pypi.org/project/mnpbem-demo-mnpbem/ |
|
|
67
|
+
| `mnpbem-greenfun` | Green-function kernels for wave propagation | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemgreenfun.yml |
|
|
68
|
+
| `mnpbem-help` | Documentation and reference module index | https://pypi.org/project/mnpbem-help/ |
|
|
69
|
+
| `mnpbem-material` | Dispersive dielectric models and tabulated optical data | https://pypi.org/project/mnpbem-material/ |
|
|
70
|
+
| `mnpbem-mesh2d` | Triangle geometry operators for 2D meshes | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemmesh2d.yml |
|
|
71
|
+
| `mnpbem-mex` | Optional acceleration backend probing interface | https://pypi.org/project/mnpbem-mex/ |
|
|
72
|
+
| `mnpbem-mie` | Rayleigh/Mie small-particle scattering approximations | Pending publication: https://github.com/galihru/mnpbem/actions/workflows/mnpbemmie.yml |
|
|
73
|
+
| `mnpbem-misc` | Core linear algebra and unit conversion utilities | https://pypi.org/project/mnpbem-misc/ |
|
|
74
|
+
| `mnpbem-particles` | Particle geometry primitives | https://pypi.org/project/mnpbem-particles/ |
|
|
75
|
+
| `mnpbem-simulation` | Spectrum orchestration over wavelength grids | https://pypi.org/project/mnpbem-simulation/ |
|
|
76
|
+
|
|
77
|
+
## Example
|
|
78
|
+
Runnable example:
|
|
79
|
+
- `examples/basic_usage.py`
|
|
80
|
+
|
|
81
|
+
Run:
|
|
82
|
+
```bash
|
|
83
|
+
python examples/basic_usage.py
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Author
|
|
87
|
+
- GALIH RIDHO UTOMO
|
|
88
|
+
- g4lihru@students.unnes.ac.id
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
mnpbem-base>=0.1.0
|
|
2
|
+
mnpbem-bem>=0.1.0
|
|
3
|
+
mnpbem-demo>=0.1.0
|
|
4
|
+
mnpbem-demo-mnpbem>=0.1.0
|
|
5
|
+
mnpbem-greenfun>=0.1.0
|
|
6
|
+
mnpbem-help>=0.1.0
|
|
7
|
+
mnpbem-material>=0.1.0
|
|
8
|
+
mnpbem-mesh2d>=0.1.0
|
|
9
|
+
mnpbem-mex>=0.1.0
|
|
10
|
+
mnpbem-mie>=0.1.0
|
|
11
|
+
mnpbem-misc>=0.1.0
|
|
12
|
+
mnpbem-particles>=0.1.0
|
|
13
|
+
mnpbem-simulation>=0.1.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mnpbem
|