SecondaryValue/setup.py

16 lines
442 B
Python
Raw Normal View History

2019-05-13 09:15:24 +02:00
from setuptools import setup
setup(name='SecondaryValue',
version='0.0.3',
description='A helper to calculate the gaussian error propagation.',
url='https://github.com/vale981/SecondaryValue',
author='Valentin Boettcher',
author_email='hiro@protagon.space',
license='GPLv3.0',
packages=['SecondaryValue'],
install_requires=[
'numpy',
'sympy',
],
zip_safe=True)