Skip to content

Commit

Permalink
Added MANIFEST.in to include .pyx files on PyPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomgrand committed Apr 15, 2024
1 parent fa34d79 commit 1840fee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global-include *.pyx
2 changes: 1 addition & 1 deletion fimpy/__init__.py
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1840fee

Please sign in to comment.