Files
edx-platform/common/lib/symmath/setup.py
2016-08-08 09:11:25 -04:00

11 lines
158 B
Python

from setuptools import setup
setup(
name="symmath",
version="0.1",
packages=["symmath"],
install_requires=[
"sympy==0.7.1",
],
)