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

17 lines
351 B
Python

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