From 349c74f3b32586a429e0617a97c87c494e235444 Mon Sep 17 00:00:00 2001
From: Markus Holzer <markus.holzer@fau.de>
Date: Tue, 16 Jan 2024 11:32:25 +0100
Subject: [PATCH] Remove unnecessary files in .toml

---
 pyproject.toml | 5 +----
 setup.py       | 2 ++
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 44dcfbf5..66d34842 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -79,10 +79,7 @@ build-backend = "setuptools.build_meta"
 [tool.setuptools.package-data]
 pystencils = [
     "include/*.h",
-    "backends/cuda_known_functions.txt",
-    "backends/opencl1.1_known_functions.txt",
-    "boundaries/createindexlistcython.c",
-    "boundaries/createindexlistcython.pyx",
+    "boundaries/createindexlistcython.pyx"
 ]
 
 [tool.setuptools.packages.find]
diff --git a/setup.py b/setup.py
index 188044a4..13202a84 100644
--- a/setup.py
+++ b/setup.py
@@ -10,9 +10,11 @@ if int(setuptools_version.split('.')[0]) < 61:
 
 import versioneer
 
+
 def get_cmdclass():
     return versioneer.get_cmdclass()
 
+
 setup(
     version=versioneer.get_version(),
     cmdclass=get_cmdclass(),
-- 
GitLab