-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.64 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
60
61
62
# [build-system]
# requires = [
# "setuptools>=45",
# "setuptools_scm[toml]>=4.2.0",
# "scikit-build",
# "cmake",
# "ninja; platform_system!='Windows'"
# ]
# build-backend = "setuptools.build_meta"
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "pygram11"
version = "0.13.2"
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.8"
dependencies = ["numpy"]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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* cp27* cp35* cp36* cp37* *-manylinux_i686 *-musllinux_i686"
manylinux-x86_64-image = "manylinux2014"
test-command = "pytest {package}/tests"
test-skip = "pp*macos* *universal2:arm64"
test-requires = ["pytest", "numpy"]