Files
edx-platform/common/lib/symmath/setup.py
2021-02-08 16:08:01 +05:00

12 lines
231 B
Python

# lint-amnesty, pylint: disable=django-not-configured, missing-module-docstring
from setuptools import setup
setup(
name="symmath",
version="0.3",
packages=["symmath"],
install_requires=[
"sympy",
],
)