-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 866 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
from distutils.core import setup
setup(
name="surmod",
packages=["surmod"],
version="0.1.2",
license="MIT",
description="Surrogate modelling library for python including code for variable screening, sampling plans and models",
author="Eniz Museljic",
author_email="[email protected]",
url="https://github.com/enizimus/surmod",
download_url="https://github.com/enizimus/surmod/archive/v0.1.2-beta.tar.gz",
keywords=["surogate", "models", "sampling plan", "screening"],
install_requires=["numpy", "scipy", "matplotlib", "ypstruct", "seaborn", "torch", "pymoo"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
)