-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathsetup.py
86 lines (74 loc) · 2.91 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
import os
import sys
import subprocess
from setuptools import setup, find_packages
# Check for python version
if sys.version_info.major != 3 or sys.version_info.minor < 7 or sys.version_info.minor > 9:
raise ValueError(
'Unsupported Python version %d.%d.%d found. NASLib requires Python '
'3.7, 3.8 or 3.9' % (sys.version_info.major, sys.version_info.minor, sys.version_info.micro)
)
cwd = os.path.dirname(os.path.abspath(__file__))
version_path = os.path.join(cwd, 'naslib', '__version__.py')
with open(version_path) as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
with open("README.md", "r") as f:
long_description = f.read()
requirements = []
with open("requirements.txt", "r") as f:
for line in f:
requirements.append(line.strip())
git_nasbench301 = "git+https://github.com/automl/nasbench301@no_gin"
try:
import nasbench301
except ImportError:
print('Installing nasbench_pytorch')
if '--user' in sys.argv:
subprocess.run([sys.executable, '-m', 'pip', 'install', '--upgrade',
'--user', git_nasbench301], check=False)
else:
subprocess.run([sys.executable, '-m', 'pip', 'install', '--upgrade',
git_nasbench301], check=False)
git_nasbench_pytorch = "git+https://github.com/romulus0914/NASBench-PyTorch@master"
try:
import nasbench_pytorch
except ImportError:
print('Installing nasbench_pytorch')
if '--user' in sys.argv:
subprocess.run([sys.executable, '-m', 'pip', 'install', '--upgrade',
'--user', git_nasbench_pytorch], check=False)
else:
subprocess.run([sys.executable, '-m', 'pip', 'install', '--upgrade',
git_nasbench_pytorch], check=False)
#git_nasbench = "git+https://github.com/yashsmehta/nasbench.git@master"
#
#try:
#import nasbench
#except ImportError:
#if '--user' in sys.argv:
#subprocess.run([sys.executable, '-m', 'pip', 'install', '--upgrade',
#'--user', git_nasbench], check=False)
#else:
#subprocess.run([sys.executable, '-m', 'pip', 'install', '--upgrade',
#git_nasbench], check=False)
print('-- Building version ' + version)
print('-- Note: by default installs pytorch-cpu version (1.9.0), update to torch-gpu by following instructions from: https://pytorch.org/get-started/locally/')
setup(
name='naslib',
version=version,
description='NASLib: A modular and extensible Neural Architecture Search (NAS) library.',
long_description=long_description,
long_description_content_type="text/markdown",
author='AutoML Freiburg',
author_email='[email protected]',
url='https://github.com/automl/NASLib',
license='Apache License 2.0',
classifiers=['Development Status :: 1 - Beta'],
packages=find_packages(),
include_package_data=True,
python_requires='>=3.7',
platforms=['Linux'],
install_requires=requirements,
keywords=['NAS', 'automl'],
test_suite='pytest'
)