Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtruong committed Sep 30, 2024
1 parent ad40ce5 commit 2165a35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import Union
from urllib.error import HTTPError

from setuptools import setup # type: ignore[import]
from setuptools import find_namespace_packages, setup # type: ignore[import]
from setuptools.command.build import build # type: ignore[import]
from setuptools.command.editable_wheel import editable_wheel # type: ignore[import]
from setuptools.command.sdist import sdist # type: ignore[import]
Expand Down Expand Up @@ -116,4 +116,5 @@ def run(self) -> None:

setup(
cmdclass={"build": Build, "editable_wheel": EditableWheel, "sdist": Sdist},
packages=find_namespace_packages(include=["weave*"]),
)

0 comments on commit 2165a35

Please sign in to comment.