-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
30 lines (27 loc) · 868 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
26
27
28
29
30
#!/usr/bin/env python
# Copyright (C) 2014-2020 The BET Development Team
'''
The python script for building the BET package and subpackages.
'''
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='bet',
version='3.0.0',
description='A toolkit for data-consistent stochastic problems.',
author='Steven Mattis',
author_email='steve.a.mattis@gmail.com',
license='GNU LGPL',
url='https://github.com/UT-CHG/BET',
packages=['bet',
'bet.sampling',
'bet.calculateP',
'bet.postProcess',
'bet.sensitivity'],
install_requires=['matplotlib',
'pyDOE',
'numpy',
'scipy',
'pytest',
'mpi4py'])