Files
edx-platform/common/lib/chem/setup.py
2018-07-17 16:01:41 -04:00

15 lines
322 B
Python

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.
],
)