fdfd_tools/meanas/__init__.py

17 lines
351 B
Python
Raw Normal View History

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-08-04 13:48:41 -07:00
__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()