Files
edx-platform/common/lib/chem/setup.py
2019-02-20 00:40:27 +01:00

16 lines
361 B
Python

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