Files
edx-platform/common/lib/chem/setup.py
David Baumgold 705fa6999a Use a forked version of NLTK
So that we can use setuptools instead of distribute
2015-07-09 13:04:33 -04:00

14 lines
212 B
Python

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