mirror of
https://github.com/vale981/SecondaryValue
synced 2025-03-04 16:41:38 -05:00
fix readme -> markdown
This commit is contained in:
parent
0207d2e8e2
commit
067d02d18e
1 changed files with 9 additions and 1 deletions
10
setup.py
10
setup.py
|
@ -1,13 +1,21 @@
|
|||
from setuptools import setup
|
||||
|
||||
|
||||
def readme():
|
||||
with open('Readme.md') as f:
|
||||
return f.read()
|
||||
|
||||
setup(name='SecondaryValue',
|
||||
version='0.0.3',
|
||||
version='0.0.4',
|
||||
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',
|
||||
|
|
Loading…
Add table
Reference in a new issue