-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathsetup.py
30 lines (28 loc) · 1.08 KB
/
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
26
27
28
29
30
from setuptools import find_packages, setup
long_description = open("README.rst").read()
setup(
name="pySOT",
version="0.3.3",
packages=find_packages(),
url="https://github.com/dme65/pySOT",
license="LICENSE.rst",
author="David Eriksson, David Bindel, Christine Shoemaker",
description="Surrogate Optimization Toolbox",
long_description=long_description,
setup_requires=["numpy"],
install_requires=["scipy", "pyDOE2", "POAP>=0.1.25", "pytest", "dill", "scikit-learn"],
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)