Mercurial > pylearn
view setup.py @ 727:d57df00f12b0
Fixed test_speed test
I had to delete some mini-batch test, that was somehow trying to do something
like
some_list + 1
and thus Python was not happy because '+' means list concatenation... I am not
sure what was the intent of this thing, so I removed it.
author | Olivier Delalleau <delallea@iro> |
---|---|
date | Wed, 27 May 2009 11:48:05 -0400 |
parents | 798607a058bd |
children | 61134776e33c |
line wrap: on
line source
#!/bin/env python from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages, Extension, Library setup(name="Pylearn", version="0.1", description="Pylearn", long_description="""Machine learning toolkit""", author="LISA", author_email="pylearn-dev@googlegroups.com", packages=find_packages(exclude='tests'), )