Files
edx-platform/common/lib/symmath/setup.py

11 lines
151 B
Python

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