2019-05-13 09:15:24 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
2019-05-13 09:25:10 +02:00
|
|
|
|
|
|
|
def readme():
|
|
|
|
with open('Readme.md') as f:
|
|
|
|
return f.read()
|
|
|
|
|
2019-05-13 09:15:24 +02:00
|
|
|
setup(name='SecondaryValue',
|
2019-05-14 21:44:28 +02:00
|
|
|
version='0.1.3',
|
2019-05-13 09:15:24 +02:00
|
|
|
description='A helper to calculate the gaussian error propagation.',
|
2019-05-13 09:25:10 +02:00
|
|
|
long_description=readme(),
|
|
|
|
long_description_content_type='text/markdown',
|
2019-05-13 09:15:24 +02:00
|
|
|
url='https://github.com/vale981/SecondaryValue',
|
|
|
|
author='Valentin Boettcher',
|
|
|
|
author_email='hiro@protagon.space',
|
|
|
|
license='GPLv3.0',
|
|
|
|
packages=['SecondaryValue'],
|
2019-05-13 09:25:10 +02:00
|
|
|
keywords='gaussian error propagation',
|
2019-05-13 09:15:24 +02:00
|
|
|
install_requires=[
|
|
|
|
'numpy',
|
|
|
|
'sympy',
|
|
|
|
],
|
|
|
|
zip_safe=True)
|