forked from houghb/savvy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (18 loc) · 781 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
opts = dict(name='savvy',
description='Sensitivity analysis visualization tools',
long_description='Interactive tools to visualize high '
'dimensionality sensitivity analysis results '
'generated using SALib (or similar).',
license=open('LICENSE').read(),
author='houghb, cdf6gc, swapilpaliwal',
packages=['savvy', 'savvy/tests'],
package_data={'savvy': ['sample_data_files/*.*',
'sample_data_files/without_second_order_indices/*.*']},
include_package_data=True
)
if __name__ == '__main__':
setup(**opts)