-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (43 loc) · 1.38 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'numpy==1.22.0',
'scipy==1.10.0',
'pyswarm==0.6',
'matplotlib',
'fastcluster',
'cma==2.6.0',
#'nlopt',
'pandas',
]
setup(
name='GOBench',
version='0.0.1',
description='Global optimization benchmark',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
],
author='Sylvain Gubian, PMP SA',
author_email='sylvain.gubian@pmi.com',
url='https://github.com/sgubianpm/gobench',
keywords='global optimization benchmarking',
packages=find_packages(),
include_package_data=True,
entry_points = {
'console_scripts':
[
'gobench=gobench.workflow:run_bench',
'goreport=gobench.workflow:report',
'gofuncdim=gobench.bench:get_func_default_dim',
],
},
install_requires=requires,
)