-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 774 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 774 Bytes
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
26
27
28
29
30
31
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 16 20:25:03 2022
@author: Harley Hanes
"""
from distutils.core import setup
from pathlib import Path
#this_directory = Path(__file__).parent
#long_description = (this_directory / "README.md").read_text()
setup(
name='UQLibrary',
version='0.1.1',
author='H. Hanes',
author_email='hhanes@ncsu.edu',
packages=['UQLibrary'],
url='https://github.com/HarleyHanes/UQLibrary-CourseProject',
license='LICENSE',
description='Robust set of sensitivity and identifiability analysis methods.',
#long_description=long_description,
install_requires=[
"numpy >= 1.20.0",
"scipy >= 1.7.1",
"matplotlib >= 3.4.3",
"tabulate >= 0.8.9",
"mpi4py >= 3.1.3"
],
)