Unverified Commit 181f0c80 authored by moto's avatar moto Committed by GitHub
Browse files

Rename build_tools to tools (#1812)

parent 1efba850
......@@ -29,7 +29,7 @@ set +e
exit_status=0
printf "\x1b[34mRunning flake8:\x1b[0m\n"
flake8 torchaudio test build_tools/setup_helpers docs/source/conf.py examples
flake8 torchaudio test tools/setup_helpers docs/source/conf.py examples
status=$?
exit_status="$((exit_status+status))"
if [ "${status}" -ne 0 ]; then
......
......@@ -6,7 +6,7 @@ from pathlib import Path
from setuptools import setup, find_packages
import distutils.command.clean
from build_tools import setup_helpers
from tools import setup_helpers
ROOT_DIR = Path(__file__).parent.resolve()
......@@ -81,7 +81,7 @@ setup(
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
packages=find_packages(exclude=["build*", "test*", "torchaudio.csrc*", "third_party*", "build_tools*"]),
packages=find_packages(exclude=["build*", "test*", "torchaudio.csrc*", "third_party*", "tools*"]),
ext_modules=setup_helpers.get_ext_modules(),
cmdclass={
'build_ext': setup_helpers.CMakeBuild,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment