Merge branch 'master' into reconnection

This commit is contained in:
Grzegorz Kowal 2021-10-05 11:13:25 -03:00
commit e08e80b490
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup( setuptools.setup(
name="amunpy", name="amunpy",
version="0.9.1", version="0.9.2",
author="Grzegorz Kowal", author="Grzegorz Kowal",
author_email="grzegorz@amuncode.org", author_email="grzegorz@amuncode.org",
description="Python Interface for the AMUN code's snapshots", description="Python Interface for the AMUN code's snapshots",

View File

@ -14,8 +14,9 @@ from .amunxml import *
from .amunh5 import * from .amunh5 import *
from .amunh5_deprecated import * from .amunh5_deprecated import *
from .integrals import * from .integrals import *
from .vtkio import *
__all__ = [ 'AmunXML', 'AmunH5', \ __all__ = [ 'AmunXML', 'AmunH5', 'WriteVTK', \
'amun_attribute', 'amun_coordinate', 'amun_dataset', 'amun_dataset_vtk', 'amun_integrals' ] 'amun_attribute', 'amun_coordinate', 'amun_dataset', 'amun_dataset_vtk', 'amun_integrals' ]
__author__ = "Grzegorz Kowal" __author__ = "Grzegorz Kowal"