Skip to content

Commit

Permalink
This revision was used to upload version 0.3 to PyPI.
Browse files Browse the repository at this point in the history
Removed dependencies that are only needed for visualization, etc. in examples.
Switched from distutils to setuptools for wheel support.
  • Loading branch information
CodeReclaimers committed Nov 12, 2015
1 parent 327f5d4 commit 3570add
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from distutils.core import setup
from setuptools import setup

setup(
name='neat-python',
version='0.2',
version='0.3',
author='cesar.gomes, mirrorballu2',
author_email='[email protected]',
maintainer='CodeReclaimers, LLC',
Expand All @@ -13,7 +13,6 @@
long_description='Python implementation of NEAT (NeuroEvolution of Augmenting Topologies), a method ' +
'developed by Kenneth O. Stanley for evolving arbitrary neural networks.',
packages=['neat', 'neat/iznn', 'neat/nn', 'neat/ctrnn', 'neat/ifnn'],
install_requires=['graphviz', 'matplotlib', 'numpy'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 3570add

Please sign in to comment.