setup_distutils_nested.py 215 Bytes
Newer Older
dugupeiwen's avatar
dugupeiwen committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import distutils

from nested.source_module import cc


setup = distutils.core.setup


def run_setup():
    setup(ext_modules=[cc.distutils_extension()])


if __name__ == '__main__':
    run_setup()