From 1840fee9870341c37f43f2fcf45c273ab339f0cd Mon Sep 17 00:00:00 2001 From: Thomas Grandits Date: Mon, 15 Apr 2024 11:32:12 +0200 Subject: [PATCH] Added MANIFEST.in to include .pyx files on PyPI. --- MANIFEST.in | 1 + fimpy/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..82894c7 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +global-include *.pyx diff --git a/fimpy/__init__.py b/fimpy/__init__.py index c8312cd..1d12a2e 100644 --- a/fimpy/__init__.py +++ b/fimpy/__init__.py @@ -1,5 +1,5 @@ #TODO: Import all symbols and methods here from .solver import create_fim_solver -__version__ = "1.2.1" +__version__ = "1.2.2" __author__ = "Thomas Grandits" \ No newline at end of file diff --git a/setup.py b/setup.py index a7d503a..f0bdf40 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def build_extensions(self): long_description = readme.read() setup(name="fim-python", - version="1.2.1", + version="1.2.2", description="This repository implements the Fast Iterative Method on tetrahedral domains and triangulated surfaces purely in python both for CPU (numpy) and GPU (cupy).", long_description=long_description, long_description_content_type="text/markdown",