NNgen / nngen

NNgen: A Fully-Customizable Hardware Synthesis Compiler for Deep Neural Network
Apache License 2.0
339 stars 46 forks source link

setup.py is BROKEN #47

Open KourFrost opened 2 years ago

KourFrost commented 2 years ago

the setup.py is broken in its current state, got it working with a few modifications line 12: version=read('nngen/VERSION').splitlines()[0],

nngen/VERSION only has one version probably fixed with : version='1.3.3',

line 14: long_description=read('README.md'),

there is no README file in folder fixed with: long_description=' ',

shtaxxx commented 2 years ago

Could you give us the information on your testing environment? d6de580fe98a439555561fa3fe9ac5d30c6eeaf5 branch can be installed by python3 setup.py install on the environment with

nngen/VERSION only has one version probably

Yes, there should be one version, but the version number is automatically read from nngen/VERSION.

there is no README file in folder

There is README.md file: https://github.com/NNgen/nngen/blob/develop/README.md .