diff options
| author | Isuru Fernando <isuruf@gmail.com> | 2022-04-07 14:32:04 -0500 |
|---|---|---|
| committer | Isuru Fernando <isuruf@gmail.com> | 2022-04-07 14:32:04 -0500 |
| commit | b517cfae6b11c15834aa7aaf439bc45894a238f4 (patch) | |
| tree | 44abb7c234c7302dc1f0b09584b38412db68cd82 /setuptools/command/build.py | |
| parent | e5552d3c42eddc463788861ae4c8847183eeec1c (diff) | |
| download | python-setuptools-git-b517cfae6b11c15834aa7aaf439bc45894a238f4.tar.gz | |
Add setuptools.command.build
In order to override distutils.command.build on downstream projects
it is good to have a setuptools specific command which allows
downstream projects to avoid importing distutils.
Diffstat (limited to 'setuptools/command/build.py')
| -rw-r--r-- | setuptools/command/build.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/command/build.py b/setuptools/command/build.py new file mode 100644 index 00000000..46b75559 --- /dev/null +++ b/setuptools/command/build.py @@ -0,0 +1,4 @@ +from distutils.command.build import build as _build + +class build(_build): + pass |
