2014-02-21 05:01:34 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='pyMath',
|
2014-02-28 15:19:42 +00:00
|
|
|
version='0.2',
|
2014-02-21 05:01:34 +00:00
|
|
|
description='Computing like a student',
|
|
|
|
author='Benjamin Bertrand',
|
|
|
|
author_email='lafrite@poneyworld.net',
|
|
|
|
packages=['pymath'],
|
|
|
|
)
|