setup.py 151 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
from setuptools import setup

setup(
    name="symmath",
    version="0.1",
    packages=["symmath"],
    install_requires=[
        "sympy",
    ],
)