forked from UT-CHG/BET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 655 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# Copyright (C) 2014-2015 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='2.0.0',
description='Butler, Estep, Tavener method',
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', 'scipy',
'numpy', 'nose'])