Skip to content

Commit

Permalink
Add build command to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
flacjacket committed Dec 20, 2022
1 parent fe91e37 commit 8020ba3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from setuptools import setup
from setuptools.command.install import install
from setuptools.command.sdist import sdist
from setuptools.command.build import build

try:
from wheel.bdist_wheel import bdist_wheel
Expand Down Expand Up @@ -122,6 +123,7 @@ def run(self):

InstallCommand = get_protocol_command(install)
SdistCommand = get_protocol_command(sdist)
BuildCommand = get_protocol_command(build)

cmdclass = {
"install": InstallCommand,
Expand Down

0 comments on commit 8020ba3

Please sign in to comment.