Files
edx-platform/common/lib/chem/setup.py
2015-04-08 11:28:49 -04:00

14 lines
215 B
Python

from setuptools import setup
setup(
name="chem",
version="0.1.1",
packages=["chem"],
install_requires=[
"pyparsing==2.0.1",
"numpy",
"scipy",
"nltk==2.0.5",
],
)