-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 748 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 748 Bytes
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
import setuptools
from msbench import __version__
def read_requirements():
reqs = []
with open('requirements.txt', 'r') as fin:
for line in fin.readlines():
reqs.append(line.strip())
return reqs
setuptools.setup(
name="msbench",
version=__version__,
author="Model ToolChain",
author_email="",
description=("Tool for training or finetuning a sparse model"),
python_requires='>=3.6',
packages=setuptools.find_packages(exclude=[".helper", ".helper.*", "helper.*", "helper"]), # noqa E501
classifiers=(
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux"),
install_requires=read_requirements()
)