mirror of
https://github.com/vale981/SecondaryValue
synced 2025-03-05 09:01:40 -05:00
23 lines
646 B
Python
23 lines
646 B
Python
from setuptools import setup
|
|
|
|
|
|
def readme():
|
|
with open('Readme.md') as f:
|
|
return f.read()
|
|
|
|
setup(name='SecondaryValue',
|
|
version='0.1.1',
|
|
description='A helper to calculate the gaussian error propagation.',
|
|
long_description=readme(),
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/vale981/SecondaryValue',
|
|
author='Valentin Boettcher',
|
|
author_email='hiro@protagon.space',
|
|
license='GPLv3.0',
|
|
packages=['SecondaryValue'],
|
|
keywords='gaussian error propagation',
|
|
install_requires=[
|
|
'numpy',
|
|
'sympy',
|
|
],
|
|
zip_safe=True)
|