Skip to content

Commit

Permalink
Try using find_namespace_packages() with include filter instead
Browse files Browse the repository at this point in the history
  • Loading branch information
lbianchi-lbl committed Dec 8, 2023
1 parent b6f779c commit 8f0fbd5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Empty file.
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pathlib import Path
import os
import sys
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from typing import List, Tuple


Expand Down Expand Up @@ -123,7 +123,7 @@ def __getitem__(self, key):
zip_safe=False,
name=NAME,
version=VERSION,
packages=find_packages(include=["idaes*"]),
packages=find_namespace_packages(include=["idaes*"]),
# Put abstract (non-versioned) deps here.
# Concrete dependencies go in requirements[-dev].txt
install_requires=[
Expand Down

0 comments on commit 8f0fbd5

Please sign in to comment.