forked from NervanaSystems/ngraph-onnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (18 loc) · 847 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from os import path
from glob import glob
from distutils.core import setup
from setuptools import find_packages
SOURCES_ROOT = path.abspath(path.dirname(__file__))
setup(name='ngraph-onnx',
version='0.24.0',
description='nGraph Backend for ONNX',
long_description=open(path.join(SOURCES_ROOT, 'README.md')).read(),
long_description_content_type='text/markdown',
author='Intel',
author_email='intelnervana@intel.com',
url='https://github.com/NervanaSystems/ngraph-onnx',
license='License :: OSI Approved :: Apache Software License',
packages=find_packages(exclude=['tests', 'tests.*']),
data_files=[('', ['LICENSE']), ('licenses', glob(path.join(SOURCES_ROOT, 'licenses/*')))],
install_requires=['cachetools', 'ngraph-core', 'numpy', 'onnx', 'setuptools'])