This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from distutils import log | |
| from setuptools import setup, find_packages | |
| from setuptools.command.build_py import build_py as _build_py | |
| from wheel.bdist_wheel import bdist_wheel as _bdist_wheel | |
| from wheel.pep425tags import get_impl_ver | |
| class build_py(_build_py): | |
| def initialize_options(self): |