mirror of
https://github.com/vale981/SecondaryValue
synced 2025-03-05 09:01:40 -05:00
15 lines
442 B
Python
15 lines
442 B
Python
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)
|