forked from automl/NASLib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
61 lines (51 loc) · 2 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
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_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/ TUM Students/ DLR',
author_email='[email protected]',
url='https://github.com/emreds/NASLib',
license='Apache License 2.0',
classifiers=['Development Status :: 1 - Beta'],
packages=find_packages(),
python_requires='>=3.7',
platforms=['Linux'],
install_requires=requirements,
keywords=['NAS', 'automl'],
test_suite='pytest'
)