11 lines
158 B
Python
11 lines
158 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="symmath",
|
|
version="0.2",
|
|
packages=["symmath"],
|
|
install_requires=[
|
|
"sympy==0.7.1",
|
|
],
|
|
)
|