12 lines
261 B
Python
12 lines
261 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='pyMath',
|
||
|
version='0.1dev',
|
||
|
description='Computing like a student',
|
||
|
author='Benjamin Bertrand',
|
||
|
author_email='lafrite@poneyworld.net',
|
||
|
packages=['pymath'],
|
||
|
)
|