-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 842 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 842 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
#!/usr/bin/env python
# coding=utf8
from setuptools import setup, find_packages
version = "0.1.0"
setup(
name="modelXplore",
version=version,
url="https://github.com/celliern/modelXplore.git",
author="Nicolas Cellier",
author_email="contact@nicolas-cellier.net",
description=("Model exploration tool : sensitivity analysis, "
"incremental sampler and meta-model tuner which "
"provide a surface response for influents parameters"),
packages=find_packages(),
install_requires=["SALib",
"sklearn",
"optunity",
"voluptuous",
"fuzzywuzzy",
"python-Levenshtein",
"matplotlib",
"xarray",
"pendulum"],
)