-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
46 lines (41 loc) · 1.19 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
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "phik"
version = "0.12.4"
description = "Phi_K correlation analyzer library"
readme = "README.rst"
authors = [{ name = "KPMG N.V. The Netherlands", email = "[email protected]" }]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"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 :: Python :: 3.12",
]
dependencies = [
"numpy>=1.18.0",
"scipy>=1.5.2",
"pandas>=0.25.1",
"matplotlib>=2.2.3",
"joblib>=0.14.1",
]
[project.optional-dependencies]
test = ["pytest>=4.0.2", "pytest-pylint>=0.13.0"]
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
cmake.build-type = "Release"
logging.level = "WARNING"
sdist.include = ["phik/simcore", "CMakeLists.txt"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra"]
xfail_strict = true
log_cli_level = "INFO"
filterwarnings = ["error"]
testpaths = ["tests"]