Files
PrimAITE/setup.py

17 lines
492 B
Python
Raw Normal View History

# Crown Copyright (C) Dstl 2022. DEFCON 703. Shared in confidence.
2023-05-25 10:31:37 +01:00
from setuptools import setup
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
2023-05-25 10:31:37 +01:00
class bdist_wheel(_bdist_wheel): # noqa
def finalize_options(self): # noqa
super().finalize_options()
# forces whee to be platform and Python version specific
# Source: https://stackoverflow.com/a/45150383
self.root_is_pure = False
setup(
2023-05-25 10:31:37 +01:00
cmdclass={
"bdist_wheel": bdist_wheel,
}
)