Mercurial > hg > pymt
annotate setup.py @ 1:f63d649f91b4 default tip
fix include path
| author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
|---|---|
| date | Mon, 19 May 2008 10:23:11 +0200 |
| parents | 0fa810263337 |
| children |
| rev | line source |
|---|---|
| 0 | 1 from distutils.core import setup, Extension |
| 2 | |
| 3 module = Extension('pymt', | |
| 4 sources = ['pymt.cpp']) | |
| 5 | |
| 6 setup (name = 'pymt', | |
| 7 version = '1.0', | |
| 8 author = 'Peter Meerwald', | |
| 9 author_email = 'pmeerw@pmeerw.net', | |
| 10 url = 'http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html', | |
| 11 description = 'MersenneTwister implementation', | |
| 12 long_description = 'Simplistic interface to R. Wagner\'s MersenneTwister class.', | |
| 13 ext_modules = [module], | |
| 14 license = 'BSD' | |
| 15 ) |
