-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.44 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.44 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
46
47
48
49
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',
'scipy',
'pytest',
#'pyswarm',
#'matplotlib',
#'fastcluster',
#'nlopt',
#'cmaes',
]
setup(
name='sdaopt',
version='0.0.5',
description='Simulated Dual Annealing and 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/sdaopt',
keywords='optimization benchmarking simulated annealing',
packages=find_packages(),
include_package_data=True,
entry_points = {
'console_scripts':
[
'sda_bench=sdaopt.benchmark.workflow:run_all_bench',
'sda_which_glob=sdaopt.benchmark.bench:which_fglob_centered',
],
},
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="tests",
)