Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround to make the wheel platform specific #84

Closed
jankatins opened this issue Nov 21, 2015 · 1 comment
Closed

Workaround to make the wheel platform specific #84

jankatins opened this issue Nov 21, 2015 · 1 comment

Comments

@jankatins
Copy link
Contributor

See here: http://lucumr.pocoo.org/2014/1/27/python-on-wheels/

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,
)
@bebraw
Copy link
Contributor

bebraw commented Nov 21, 2015

If you think it's a worthwhile change, please go ahead. 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants