Files
edx-platform/common/lib/chem/setup.py
2018-02-07 10:42:23 -05:00

14 lines
230 B
Python

from setuptools import setup
setup(
name="chem",
version="0.1.1",
packages=["chem"],
install_requires=[
"pyparsing==2.0.7",
"numpy==1.6.2",
"scipy==0.14.0",
"nltk==3.2.5",
],
)