We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dca25e1 commit 83b6815Copy full SHA for 83b6815
1 file changed
setup.py
@@ -7,6 +7,9 @@
7
8
from setuptools import setup
9
10
+needs_wheel = {'bdist_wheel'}.intersection(sys.argv)
11
+wheel = ['wheel'] if needs_wheel else []
12
+
13
14
def read(*paths):
15
"""
@@ -94,6 +97,7 @@ def get_package_data(package):
94
97
'django-polymorphic': ['django-polymorphic>=2.0'],
95
98
'django-filter': ['django-filter>=2.0']
96
99
},
100
+ setup_requires=wheel,
101
python_requires=">=3.5",
102
zip_safe=False,
103
)
0 commit comments