setup.py 470 Bytes
Newer Older
1
2
3
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
Tim Dettmers's avatar
Tim Dettmers committed
4
# LICENSE file in the root directory of this source tree.
5
6
from setuptools import find_packages, setup
from setuptools.dist import Distribution
7

8

9
10
11
12
13
14
# Tested with wheel v0.29.0
class BinaryDistribution(Distribution):
    def has_ext_modules(self):
        return True


Matthew Douglas's avatar
Matthew Douglas committed
15
setup(version="0.45.5.dev0", packages=find_packages(), distclass=BinaryDistribution)