mirror of
https://github.com/block/goose.git
synced 2026-07-09 16:09:22 +00:00
15 lines
367 B
Python
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})
|