-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (23 loc) · 918 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
from setuptools import setup
exec(open('gsa_module/_version.py').read())
setup(
name="gsa-module",
version=__version__,
description="Package to conduct global sensitivity analysis of computer simulation",
url="https://bitbucket.org/damar-wicaksono/gsa-module",
author="Damar Wicaksono",
author_email="[email protected]",
license="MIT",
packages=["gsa_module"],
scripts=["bin/create_validset"],
# Provide the following executable scripts on the path
entry_points={
"console_scripts": [
"gsa_create_sample=gsa_module.cmdln_interface:create_sample",
"gsa_morris_generate=gsa_module.cmdln_interface:morris_generate",
"gsa_morris_analyze=gsa_module.cmdln_interface:morris_analyze",
"gsa_sobol_generate=gsa_module.cmdln_interface:sobol_generate"
]
},
zip_safe=False, install_requires=['numpy']
)