-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.74 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.74 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
Copyright (C) 2019 Chenchao Shou
Licensed under Illinois Open Source License (see the file LICENSE). For more information
about the license, see http://otm.illinois.edu/disclose-protect/illinois-open-source-license.
"""
import setuptools
# read the long description of the package from README
with open("README.md", 'r') as f:
long_description = f.read()
# read __version__ from the file
exec(open("prosrs/version.py").read())
setuptools.setup(
name="prosrs",
version=__version__,
description="A tree-based parallel surrogate optimization algorithm for optimizing noisy expensive functions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/compdyn/ProSRS",
author="Chenchao Shou",
author_email="cshou3@illinois.edu",
license="University of Illinois/NCSA Open Source",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
],
keywords="optimization algorithm",
packages=setuptools.find_packages(exclude=['test']),
install_requires=['numpy', 'scipy', 'matplotlib', 'pyDOE', 'pathos', 'scikit-learn']
)