-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.3 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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "pygram11"
version = "0.15.0"
readme = "README.md"
description = "Fast histogramming in Python built on pybind11 and OpenMP."
authors = [
{ name = "Doug Davis", email = "ddavis@ddavis.io" },
]
maintainers = [
{ name = "Doug Davis", email = "ddavis@ddavis.io" },
]
requires-python = ">=3.11"
dependencies = ["numpy"]
classifiers = [
"Programming Language :: C++",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Development Status :: 6 - Mature",
]
[tool.pytest.ini_options]
norecursedirs = ["extern"]
testpaths = ["tests"]
addopts = [
"-v",
"-ra",
"--showlocals",
"--strict-markers",
"--strict-config",
]
[tool.cibuildwheel]
skip = ["pp*", "gp*", "cp38*", "cp39*", "cp310*", "*-manylinux_i686", "*-musllinux_i686"]
manylinux-x86_64-image = "manylinux2014"
test-command = "pytest {package}/tests"
test-skip = "pp*macos* *universal2:arm64"
test-requires = ["pytest", "numpy"]
[tool.ruff]
line-length = 92
[dependency-groups]
dev = [
"pytest>=8.4.1",
]