-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
63 lines (49 loc) · 2.05 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import setuptools
from pysamoo.version import __version__
# ---------------------------------------------------------------------------------------------------------
# GENERAL
# ---------------------------------------------------------------------------------------------------------
__name__ = "pysamoo"
__author__ = "Julian Blank"
__url__ = "https://anyoptimization.com/projects/pysamoo/"
data = dict(
name=__name__,
version=__version__,
author=__author__,
url=__url__,
python_requires='>=3.7',
author_email="[email protected]",
description="Surrogate-Assisted Multi-objective Optimization",
license='GNU AFFERO GENERAL PUBLIC LICENSE (AGPL)',
keywords="surrogate, metamodel, bayesian optimization",
install_requires=["pymoo==0.6.1.1", "ezmodel"],
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics'
]
)
# ---------------------------------------------------------------------------------------------------------
# METADATA
# ---------------------------------------------------------------------------------------------------------
# update the readme.rst to be part of setup
def readme():
with open('README.rst') as f:
return f.read()
def packages():
return ["pysamoo"] + ["pysamoo." + e for e in setuptools.find_packages(where='pysamoo')]
data['long_description'] = readme()
data['packages'] = packages()
setuptools.setup(**data)