Files
edx-platform/common/lib/calc/setup.py
Feanil Patel c0b5916804 Update setup.py for calc module.
We've been running with pyparsing 2.2.0 in production this whole time
so I'm pretty sure we can depend on this.
2018-02-23 14:02:54 -05:00

13 lines
205 B
Python

from setuptools import setup
setup(
name="calc",
version="0.2",
packages=["calc"],
install_requires=[
"pyparsing==2.2.0",
"numpy==1.6.2",
"scipy==0.14.0",
],
)