-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 804 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(name='SecondaryValue',
version='0.2.0',
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='[email protected]',
license='GPLv3.0',
packages=['SecondaryValue'],
keywords='gaussian error propagation',
install_requires=[
'numpy',
'sympy',
],
zip_safe=True)