setup.py 2.66 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
17 18
import os
import sys
19
from setuptools import find_packages
20 21
from distutils.core import setup

22
def config_cython():
23 24 25
    # temporary disable cython for now
    # as NNVM uses local DLL build
    return []
26 27 28 29 30 31 32 33 34
    try:
        from Cython.Build import cythonize
        from distutils.extension import Extension
        if sys.version_info >= (3, 0):
            subdir = "_cy3"
        else:
            subdir = "_cy2"
        ret = []
        path = "nnvm/cython"
35

36 37 38 39 40 41 42 43 44 45 46 47
        for fn in os.listdir(path):
            if not fn.endswith(".pyx"):
                continue
            ret.append(Extension(
                "nnvm/%s/%s" % (subdir, fn[:-4]),
                ["nnvm/cython/%s" % fn],
                include_dirs=["../include/"],
                language="c++"))
        return cythonize(ret)
    except:
        print("Cython is not installed, will compile without cython module")
        return []
48

49 50 51 52 53 54 55 56
# We can not import `libinfo.py` in setup.py directly since __init__.py
# Will be invoked which introduces dependences
CURRENT_DIR = os.path.dirname(__file__)
libinfo_py = os.path.join(CURRENT_DIR, './nnvm/libinfo.py')
libinfo = {'__file__': libinfo_py}
exec(compile(open(libinfo_py, "rb").read(), libinfo_py, 'exec'), libinfo, libinfo)

__version__ = libinfo['__version__']
57 58 59 60 61 62 63 64 65 66 67
if not os.getenv('CONDA_BUILD'):
    LIB_PATH = libinfo['find_lib_path']()
    _, LIB_NAME = os.path.split(LIB_PATH[0])
    curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
    rpath = os.path.relpath(LIB_PATH[0], curr_path)
    setup_kwargs = dict(
        include_package_data=True,
        data_files=[('nnvm', [rpath])]
    )
else:
    setup_kwargs = {}
68 69

setup(name='nnvm',
70
      version=__version__,
71 72 73 74 75 76 77
      description="NNVM: Open Compiler for AI Frameworks",
      zip_safe=False,
      install_requires=[
        'numpy'
      ],
      packages=find_packages(),
      url='https://github.com/dmlc/nnvm',
78
      **setup_kwargs)