Exclude conda directory from Python package

This commit is contained in:
Eren Dogan 2023-02-07 22:20:29 -08:00
parent c598a29f97
commit 50f746a994
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from setuptools import setup, find_namespace_packages
# Include these folder from the root of repo as submodules
include = ["compiler", "docker", "technology", "macros"]
# Exclude files/folders with these words
exclude = ["docs", "images"]
exclude = ["docs", "images", "miniconda"]
# Find all modules inside the 'compiler' folder