Files
edx-platform/common/lib/symmath/setup.py
2019-03-22 10:02:36 -04:00

11 lines
151 B
Python

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