diff --git a/README.md b/README.md index 9fd7d636..aa76dca4 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,6 @@ [![Code Issues](https://www.quantifiedcode.com/api/v1/project/2bb1d19f57684f4589cb4700f99dd75e/badge.svg)](https://www.quantifiedcode.com/app/project/2bb1d19f57684f4589cb4700f99dd75e) [![Coverage Status](https://coveralls.io/repos/CodeReclaimers/neat-python/badge.svg?branch=master&service=github)](https://coveralls.io/github/CodeReclaimers/neat-python?branch=master) -## NOTES ## - -Significant, wide-spread changes have been made recently to the design of the library. -Once these are more stable they will be released as version 0.9. This should happen in the first week or two of 2017. - ## About ## NEAT (NeuroEvolution of Augmenting Topologies) is a method developed by Kenneth O. Stanley for evolving arbitrary neural diff --git a/setup.py b/setup.py index 7b73422d..14742d4e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='neat-python', - version='0.8999', + version='0.9', author='cesar.gomes, mirrorballu2', author_email='nobody@nowhere.com', maintainer='CodeReclaimers, LLC', @@ -14,11 +14,17 @@ 'developed by Kenneth O. Stanley for evolving arbitrary neural networks.', packages=['neat', 'neat/iznn', 'neat/nn', 'neat/ctrnn'], classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Scientific/Engineering' ] )