16 lines
367 B
Python
16 lines
367 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(name='pyMath',
|
|
version='1.1',
|
|
description='Computing like a student',
|
|
author='Benjamin Bertrand',
|
|
author_email='lafrite@poneyworld.net',
|
|
packages=['pymath'],
|
|
install_requires=['pyparsing', 'sympy'],
|
|
)
|