We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Package .* is absent from the packages configuration
1 parent e07bc13 commit fb38be0Copy full SHA for fb38be0
setup.py
@@ -15,6 +15,7 @@
15
from distutils.command.clean import clean
16
from pathlib import Path
17
from typing import Optional
18
+import warnings
19
20
from setuptools import Extension, find_packages, setup
21
from setuptools.command.build_ext import build_ext
@@ -41,6 +42,9 @@ class editable_wheel:
41
42
pass
43
44
45
+# Too noisy: https://github.com/pypa/setuptools/blob/b74789e2aa3227e85d61b40708959b35d7f666cc/setuptools/command/build_py.py#L343
46
+warnings.filterwarnings("ignore", message="Package .* is absent from the `packages` configuration")
47
+
48
sys.path.insert(0, os.path.dirname(__file__))
49
50
from python.build_helpers import get_base_dir, get_cmake_dir
0 commit comments