1
+ [build-system ]
2
+ requires = [" setuptools >= 61.0" ]
3
+ build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ name = " Py-BOBYQA"
7
+ dynamic = [" version" ]
8
+ dependencies = [
9
+ " setuptools" ,
10
+ " numpy" ,
11
+ " scipy" ,
12
+ " pandas"
13
+ ]
14
+ requires-python = " >=3.8"
15
+ authors = [
16
+ {
name =
" Lindon Roberts" ,
email =
" [email protected] " }
17
+ ]
18
+ maintainers = [
19
+ {
name =
" Lindon Roberts" ,
email =
" [email protected] " }
20
+ ]
21
+ description = " A flexible derivative-free solver for (bound constrained) general objective minimization"
22
+ readme = " README.rst"
23
+ license = {text = " GPL-3.0-or-later" }
24
+ keywords = [" mathematics" , " optimization" , " derivative free optimization" ]
25
+ classifiers = [
26
+ " Development Status :: 5 - Production/Stable" ,
27
+ " Environment :: Console" ,
28
+ " Framework :: IPython" ,
29
+ " Framework :: Jupyter" ,
30
+ " Intended Audience :: Science/Research" ,
31
+ " License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" ,
32
+ " Operating System :: MacOS" ,
33
+ " Operating System :: Microsoft :: Windows" ,
34
+ " Operating System :: Unix" ,
35
+ " Programming Language :: Python" ,
36
+ " Programming Language :: Python :: 3" ,
37
+ " Programming Language :: Python :: 3.8" ,
38
+ " Programming Language :: Python :: 3.9" ,
39
+ " Programming Language :: Python :: 3.10" ,
40
+ " Programming Language :: Python :: 3.11" ,
41
+ " Programming Language :: Python :: 3.12" ,
42
+ " Topic :: Scientific/Engineering" ,
43
+ " Topic :: Scientific/Engineering :: Mathematics"
44
+ ]
45
+
46
+ [project .optional-dependencies ]
47
+ dev = [" pytest" , " Sphinx" , " sphinx-rtd-theme" ]
48
+ trustregion = [" trustregion>=1.1" ]
49
+
50
+ [project .urls ]
51
+ Homepage = " https://github.com/numericalalgorithmsgroup/pybobyqa"
52
+ Download = " https://github.com/numericalalgorithmsgroup/pybobyqa/releases/"
53
+ "Bug Tracker" = " https://github.com/numericalalgorithmsgroup/pybobyqa/issues/"
54
+ Documentation = " https://numericalalgorithmsgroup.github.io/pybobyqa/"
55
+ "Source Code" = " https://github.com/numericalalgorithmsgroup/pybobyqa"
56
+
57
+ [tool .setuptools ]
58
+ packages = [" pybobyqa" ]
59
+
60
+ [tool .setuptools .dynamic ]
61
+ version = {attr = " pybobyqa.__version__" }
0 commit comments