setup.py 193 Bytes
Newer Older
1 2 3 4
from setuptools import setup

setup(
    name="calc",
5
    version="0.1.1",
6 7 8 9 10 11 12
    py_modules=["calc"],
    install_requires=[
        "pyparsing==1.5.6",
        "numpy",
        "scipy"
    ],
)