-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
59 lines (51 loc) · 2.05 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
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 > 10:
raise ValueError(
'Unsupported Python version %d.%d.%d found. AnalogNAS 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, 'analogainas', '__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())
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='analogainas',
version=version,
description='AnalogAINAS: A modular and extensible Analog-aware Neural Architecture Search (NAS) library.',
long_description=long_description,
long_description_content_type="text/markdown",
author='IBM Research',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: GPU :: NVIDIA CUDA',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Typing :: Typed',
],
keywords=['NAS', 'analog', 'torch'],
packages=find_packages(),
python_requires='>=3.7',
platforms=['Linux'],
install_requires=requirements
)