We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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=' ',
The text was updated successfully, but these errors were encountered:
Could you give us the information on your testing environment? d6de580 branch can be installed by python3 setup.py install on the environment with
python3 setup.py install
pip3 freeze
nngen/VERSION only has one version probably
Yes, there should be one version, but the version number is automatically read from nngen/VERSION.
nngen/VERSION
there is no README file in folder
There is README.md file: https://github.com/NNgen/nngen/blob/develop/README.md .
README.md
Sorry, something went wrong.
No branches or pull requests
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=' ',
The text was updated successfully, but these errors were encountered: