You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import os
from setuptools import setup
from setuptools.dist import Distribution
class BinaryDistribution(Distribution):
def is_pure(self):
return False
setup(
...,
include_package_data=True,
distclass=BinaryDistribution,
)
The text was updated successfully, but these errors were encountered:
See here: http://lucumr.pocoo.org/2014/1/27/python-on-wheels/
The text was updated successfully, but these errors were encountered: