goose/crates/goose-sdk/python/setup.py

15 lines
367 B
Python

from setuptools import setup
from wheel.bdist_wheel import bdist_wheel
class BinaryWheel(bdist_wheel):
def finalize_options(self):
super().finalize_options()
self.root_is_pure = False
def get_tag(self):
_, _, platform_tag = super().get_tag()
return "py3", "none", platform_tag
setup(cmdclass={"bdist_wheel": BinaryWheel})