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

16 lines
346 B
Python

from __future__ import absolute_import
from setuptools import setup
setup(
name="chem",
version="0.3.0",
packages=["chem"],
install_requires=[
"pyparsing==2.2.0",
"numpy",
"scipy",
"nltk",
"markupsafe", # Should be replaced by other utilities. See LEARNER-5853 for more details.
],
)