From 76ada1999918ac8f785ae48318c8fdf4d40d0566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?samet=20=C3=A7opur?= Date: Sun, 27 Oct 2024 00:44:19 +0300 Subject: [PATCH] Update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7668394..a0b6cf5 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup, Extension +from setuptools import setup, Extension, find_packages from Cython.Build import cythonize import numpy as np import sys @@ -106,5 +106,6 @@ name="treemind", version="0.0.1", description="treemind", + packages=find_packages(include=["treemind", "treemind.*"]), ext_modules=cythonize(extensions, compiler_directives={"language_level": "3"}), -) +) \ No newline at end of file