2023-07-17 19:57:34 +01:00
|
|
|
# Crown Owned Copyright (C) Dstl 2023. DEFCON 703. Shared in confidence.
|
2023-05-25 10:31:37 +01:00
|
|
|
from setuptools import setup
|
2023-06-08 15:57:38 +01:00
|
|
|
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel # noqa
|
2023-03-28 17:33:34 +01:00
|
|
|
|
2023-05-25 10:31:37 +01:00
|
|
|
|
|
|
|
|
class bdist_wheel(_bdist_wheel): # noqa
|
|
|
|
|
def finalize_options(self): # noqa
|
|
|
|
|
super().finalize_options()
|
2023-06-08 15:57:38 +01:00
|
|
|
# Set to False if you need to build OS and Python specific wheels
|
|
|
|
|
self.root_is_pure = True # noqa
|
2023-03-28 17:33:34 +01:00
|
|
|
|
2023-05-25 11:42:19 +01:00
|
|
|
|
2023-03-28 17:33:34 +01:00
|
|
|
setup(
|
2023-05-25 10:31:37 +01:00
|
|
|
cmdclass={
|
|
|
|
|
"bdist_wheel": bdist_wheel,
|
|
|
|
|
}
|
2023-05-25 11:42:19 +01:00
|
|
|
)
|