-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (83 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
97 lines (83 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"hatchling",
"versioningit",
]
build-backend = "hatchling.build"
[project]
name = "coco-visualize"
authors = [
{name = "Dimo Brockhoff", email = "dimo.brockhoff@inria.fr" },
{name = "Nikolaus Hansen", email = "nikolaus.hansen@inria.fr" },
{name = "Olaf Mersmann", email = "olafm@p-value.net"},
{name = "Tea Tušar", email = "tea.tusar@ijs.si" },
]
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 :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"numpy >= 2.0",
"polars >= 0.20",
"matplotlib >= 3.7",
"scipy >= 1.14.0",
]
dynamic = ["version"]
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "double"
docstring-code-format = true
docstring-code-line-length = 80
[tool.ruff.lint]
ignore = ["F821"]
[tool.pytest]
log_cli = true
addopts = ["--doctest-modules"]
[tool.pyright]
reportAny = false
reportDeprecated = false
reportUnusedCallResult = false
[tool.hatch.version]
source = "versioningit"
[tool.hatch.build]
artifacts = ["src/cocoviz/_version.py"]
[tool.hatch.build.targets.wheel]
packages = ["src/cocoviz"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
]
exclude = ["/.gitignore"]
[tool.versioningit.write]
file = "src/cocoviz/_version.py"
[dependency-groups]
dev = [
"cocopp>=2.8.0",
"ipywidgets>=8.1.8",
"jupyterlab>=4.4.10",
"pandas>=2.3.3",
"pyarrow>=22.0.0",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.3",
"tqdm>=4.67.1",
]
[project.urls]
Homepage = "https://coco-platform.org/"
Issues = "https://github.com/numbbo/coco-visualize/issues"
[project.optional-dependencies]
parquet = [
"pyarrow>=22.0.0",
]