Files
edx-platform/common/lib/symmath/setup.py
2017-12-12 15:57:42 -05:00

11 lines
158 B
Python

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