mirror of
https://github.com/vale981/SecondaryValue
synced 2025-03-05 17:11:41 -05:00
16 lines
442 B
Python
16 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)
|