···11-diff --git a/setup.py b/setup.py
22-index 8e1c220..45297b6 100644
33---- a/setup.py
44-+++ b/setup.py
55-@@ -25,20 +25,6 @@ class CustomBuildExtCommand(build_ext):
66- install_h3(h3_version)
77-88-99--# Tested with wheel v0.29.0
1010--class BinaryDistribution(Distribution):
1111-- def __init__(self, attrs=None):
1212-- Distribution.__init__(self, attrs)
1313-- # The values used for the name and sources in the Extension below are
1414-- # not important, because we override the build_ext command above.
1515-- # The normal C extension building logic is never invoked, and is
1616-- # replaced with our own custom logic. However, ext_modules cannot be
1717-- # empty, because this signals to other parts of distutils that our
1818-- # package contains C extensions and thus needs to be built for
1919-- # different platforms separately.
2020-- self.ext_modules = [Extension('h3c', [])]
2121--
2222--
2323- long_description = open('README.rst').read()
2424-2525- setup(
2626-@@ -52,14 +38,10 @@ setup(
2727- url='https://github.com/uber/h3-py.git',
2828- packages=find_packages(exclude=['tests', 'tests.*']),
2929- install_requires=[],
3030-- cmdclass={
3131-- 'build_ext': CustomBuildExtCommand,
3232-- },
3333- package_data={
3434- 'h-py':
3535- ['out/*.dylib' if platform.system() == 'Darwin' else (
3636- 'out/*.dll' if platform.system() == 'Windows' else
3737- 'out/*.so.*')]
3838- },
3939-- license='Apache License 2.0',
4040-- distclass=BinaryDistribution)
4141-+ license='Apache License 2.0')