You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
meanas/meanas/__init__.py

19 lines
305 B
Python

"""
Electromagnetic simulation tools
See the readme or `import meanas; help(meanas)` for more info.
"""
import pathlib
__version__ = '0.9'
__author__ = 'Jan Petykiewicz'
try:
with open(pathlib.Path(__file__).parent / 'README.md', 'r') as f:
__doc__ = f.read()
except Exception:
pass