view setup.py @ 563:16f91ca016b1

* added NStages as a stopper (moved from hpu/conv) * added a argmax_standalone output to logistic_regression which is independent of the targets, which was needed to compute an output independently of the target * fixed some import discrepancies between pylearn and pylearn_refactor (mostly for datasets) * added testDataset which generates sequential or random data for a given shape
author desjagui@atchoum.iro.umontreal.ca
date Wed, 03 Dec 2008 17:21:05 -0500
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'),
)