setup.py 541 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
from setuptools import setup, Distribution


class BinaryDistribution(Distribution):
    def has_ext_modules(foo):
        return True


setup(
    name='paddle_master',
    version='0.1',
    description='The client of the master server of PaddlePaddle.',
    url='https://github.com/PaddlePaddle/Paddle/go/master/python',
    author='PaddlePaddle Authors',
    author_email='paddle-dev@baidu.com',
    license='Apache 2.0',
    packages=['paddle_master'],
    package_data={'master': ['libmaster.so'], },
    distclass=BinaryDistribution)