diff --git a/setup.py b/setup.py index b6071e6..82bb34e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import os cythonExt = [] for root, dirs, files in os.walk(os.getcwd()): for file in files: - if file.endswith(".pyx"): + if file.endswith(".pyx") and ".pyenv" not in root: # im sorry filePath = os.path.relpath(os.path.join(root, file)) cythonExt.append(Extension(filePath.replace("/", ".")[:-4], [filePath]))