-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.46 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
59
[build-system]
requires = [
"setuptools >= 67.0",
"setuptools-scm >= 8",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "coco-visualize"
authors = [
{name = "Dimo Brockhoff", email = "[email protected]" },
{name = "Nikolaus Hansen", email = "[email protected]" },
{name = "Olaf Mersmann", email = "[email protected]"},
{name = "Tea Tušar", email = "[email protected]" },
]
description = 'Standalone COCO visualization toolbox'
readme = "README.md"
requires-python = ">=3.10"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"numpy >= 2.0",
"polars >= 0.20",
"matplotlib >= 3.7",
"scipy >= 1.14.0"
]
dynamic = ["version"]
[tool.setuptools_scm]
version_file = "src/cocoviz/_version.py"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "double"
docstring-code-format = true
docstring-code-line-length = 80
[tool.pytest]
log_cli = true
addopts = "--doctest-modules"
[project.urls]
Homepage = "https://github.com/numbbo/coco"
Documentation = "https://numbbo.github.io/coco-doc/apidocs/cocoex/"
Issues = "https://github.com/numbbo/coco/issues"