From bb2a539227f47cb78f591b98d1114d2c55e6aa47 Mon Sep 17 00:00:00 2001 From: Alex Kaszynski Date: Thu, 2 Nov 2023 22:41:02 -0600 Subject: [PATCH] add py.typed (#18) --- mapdl_archive/py.typed | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 mapdl_archive/py.typed diff --git a/mapdl_archive/py.typed b/mapdl_archive/py.typed new file mode 100644 index 0000000..5fcb852 --- /dev/null +++ b/mapdl_archive/py.typed @@ -0,0 +1 @@ +partial \ No newline at end of file diff --git a/setup.py b/setup.py index a683e05..819af84 100644 --- a/setup.py +++ b/setup.py @@ -77,11 +77,12 @@ python_requires=">=3.8", keywords="vtk MAPDL ANSYS cdb", package_data={ + "mapdl_archive": ["py.typed"], "mapdl_archive.examples": [ "TetBeam.cdb", "HexBeam.cdb", "sector.cdb", - ] + ], }, install_requires=["pyvista>=0.41.1"], )