-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.22 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
[build-system]
requires = [
"setuptools>=77.0",
"pybind11==2.12.0",
"wheel",
"ninja",
"cmake>=3.12"
]
build-backend = "setuptools.build_meta"
[project]
name = "deglib"
dynamic = ["version"]
dependencies = [
"numpy>=2.2",
"psutil",
]
requires-python = ">= 3.10"
authors = [
{name = "Nico Hezel"},
]
description = "Python bindings for the Dynamic Exploration Graph library by Nico Hezel"
readme = "README.md"
license-files = ["LICENSE"]
keywords = ["anns-search", "graph", "python"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/Visual-Computing/DynamicExplorationGraph"
[project.optional-dependencies]
test = ["pytest>=8.0"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = [
"error",
"ignore:(ast.Str|Attribute s|ast.NameConstant|ast.Num) is deprecated:DeprecationWarning:_pytest",
]
testpaths = ["tests"]
[tool.cibuildwheel]
test-command = "pytest {project}"
test-extras = ["test"]