forked from numbbo/coco-postprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.49 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools >= 67.0",
"setuptools-scm >= 8",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "coco-postprocess"
authors = [
{name="Umut Batu"},
{name="Dimo Brockhoff"},
{name="Paul Dufossé"},
{name="Nikolaus Hansen"},
{name="Filip Matzner"},
{name="Raymond Ros"},
{name="Dejan Tušar"},
]
description = "Benchmarking framework for all types of black-box optimization algorithms, postprocessing."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering",
]
dependencies = [
"matplotlib >=3.5.0",
"numpy >=1.21.0",
"platformdirs >=3.8.1",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://numbbo.github.io"
Issues = "https://github.com/numbbo/coco-postprocess/issues"
Repository = "https://github.com/numbbo/coco-postprocess"
[tool.setuptools_scm]
version_file = "src/cocopp/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]