Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sametcopur committed Oct 26, 2024
1 parent 43730c6 commit 76ada19
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"}),
)
)

0 comments on commit 76ada19

Please sign in to comment.