-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
28 lines (23 loc) · 1012 Bytes
/
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
from setuptools import setup, find_packages
import os
def read(filename):
# return open(os.path.join(os.path.dirname(__file__), filename), encoding='utf8').read()
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name='nngen',
version=read('nngen/VERSION').splitlines()[0],
description='A Fully-Customizable Hardware Synthesis Compiler for Deep Neural Network',
long_description=read('README.md'),
long_description_content_type="text/markdown",
keywords='Neural Network, Deep Learning, FPGA, High-Level Synthesis',
author='Shinya Takamaeda-Yamazaki',
license="Apache License 2.0",
url='https://github.com/NNgen/nngen',
packages=find_packages(),
package_data={'nngen': ['VERSION'], },
install_requires=['veriloggen>=2.3.0',
'numpy>=1.17',
'onnx>=1.9.0'],
extras_require={
'test': ['pytest>=3.8.1', 'pytest-pythonpath>=0.7.3'],
},
)