-
Notifications
You must be signed in to change notification settings - Fork 163
/
setup.py
96 lines (79 loc) · 2.77 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
from __future__ import print_function
import os
import platform
import sys
import tarfile
import setuptools
if sys.version_info < (3, ):
print("Please use Python 3 for nnf python library")
sys.exit(-1)
python_min_version = (3, 5, 2)
python_min_version_str = '.'.join(map(str, python_min_version))
if sys.version_info < python_min_version:
print("You are using Python {}. Python >={} is required.".format(
platform.python_version(), python_min_version_str))
sys.exit(-1)
nnf_bin = "build/src/tools/nnfusion/nnfusion"
nnf_tool = "build/src/tools/nnfusion/"
nnf_tgt_dir = "share/nnfusion"
nnf_blacklist = ["cmake_install.cmake", "Makefile", "CMakeFiles", "__pycache__", "CMakeLists.txt"]
if not os.path.exists(nnf_bin):
print("Please build nnfusion in /build folder.")
sys.exit(-1)
def get_data_files(source_dir, ignore_list):
def dir_files_pair(root, files):
directory = os.path.relpath(root, source_dir)
directory = os.path.join(nnf_tgt_dir, directory)
files = [
os.path.join(root, file)
for file in files
if file not in ignore_list
]
return directory, files
pairs = [
dir_files_pair(root, files)
for root, dir, files in os.walk(source_dir)
if not any(word in root for word in ignore_list)
]
# Remove if files is empty
return [
pair
for pair in pairs
if pair[1]
]
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
with open("requirements_test.txt") as f:
tests_require = f.read().splitlines()
with open("VERSION") as f:
version = f.readline().strip()
data_files = get_data_files(nnf_tool, nnf_blacklist) + get_data_files("src/contrib/", nnf_blacklist)
setuptools.setup(
name="nnfusion",
version=version,
author="Microsoft Corporation",
author_email="nnfusion-team@microsoft.com",
description="NNFusion is a flexible and efficient DNN compiler",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/nnfusion",
packages=setuptools.find_packages(where="src/python", exclude=["example"]),
package_dir={"": "src/python"},
data_files= data_files,
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
],
entry_points={
'console_scripts': [
'nnfusion=nnfusion.__main__:main',
],
}
)