2019-08-04 13:48:41 -07:00
|
|
|
"""
|
|
|
|
Electromagnetic simulation tools
|
|
|
|
|
2019-11-24 22:46:47 -08:00
|
|
|
See the readme or `import meanas; help(meanas)` for more info.
|
2019-08-04 13:48:41 -07:00
|
|
|
"""
|
|
|
|
|
2019-09-27 20:44:31 -07:00
|
|
|
import pathlib
|
2019-09-12 03:21:09 -07:00
|
|
|
|
2019-08-04 13:48:41 -07:00
|
|
|
from .types import dx_lists_t, field_t, vfield_t, field_updater
|
|
|
|
from .vectorization import vec, unvec
|
|
|
|
|
|
|
|
__author__ = 'Jan Petykiewicz'
|
2019-09-27 20:44:31 -07:00
|
|
|
|
|
|
|
with open(pathlib.Path(__file__).parent / 'VERSION', 'r') as f:
|
|
|
|
__version__ = f.read().strip()
|
2019-11-24 22:46:47 -08:00
|
|
|
|
|
|
|
with open(pathlib.Path(__file__).parent.parent / 'README.md', 'r') as f:
|
|
|
|
__doc__ = f.read()
|
|
|
|
|