14 lines
229 B
Python
14 lines
229 B
Python
from __future__ import absolute_import
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="calc",
|
|
version="0.3",
|
|
packages=["calc"],
|
|
install_requires=[
|
|
"pyparsing==2.2.0",
|
|
"numpy",
|
|
"scipy",
|
|
],
|
|
)
|