Mercurial > pylearn
comparison setup.py @ 538:798607a058bd
added missing files
author | James Bergstra <bergstrj@iro.umontreal.ca> |
---|---|
date | Wed, 12 Nov 2008 22:00:20 -0500 |
parents | |
children | 61134776e33c |
comparison
equal
deleted
inserted
replaced
537:b054271b2504 | 538:798607a058bd |
---|---|
1 #!/bin/env python | |
2 | |
3 from ez_setup import use_setuptools | |
4 use_setuptools() | |
5 from setuptools import setup, find_packages, Extension, Library | |
6 setup(name="Pylearn", | |
7 version="0.1", | |
8 description="Pylearn", | |
9 long_description="""Machine learning toolkit""", | |
10 author="LISA", | |
11 author_email="pylearn-dev@googlegroups.com", | |
12 packages=find_packages(exclude='tests'), | |
13 ) | |
14 |