2014-02-21 05:01:34 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2015-05-14 12:10:11 +00:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
2014-02-21 05:01:34 +00:00
|
|
|
|
|
|
|
setup(name='pyMath',
|
2015-05-14 12:00:33 +00:00
|
|
|
version='1.1',
|
2014-02-21 05:01:34 +00:00
|
|
|
description='Computing like a student',
|
|
|
|
author='Benjamin Bertrand',
|
|
|
|
author_email='lafrite@poneyworld.net',
|
|
|
|
packages=['pymath'],
|
2015-05-14 12:00:33 +00:00
|
|
|
install_requires=['pyparsing', 'sympy'],
|
2014-02-21 05:01:34 +00:00
|
|
|
)
|