-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 975 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 975 Bytes
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
[build-system]
requires = ["scikit-build-core>=0.9", "pybind11>=2.12"]
build-backend = "scikit_build_core.build"
[project]
name = "autoite"
version = "2.2.1"
description = "Individual Treatment Effect estimation via Intrinsic Causal Geometry (ICG-HVRT cone + ICG-HART pyramid)"
license = "AGPL-3.0"
requires-python = ">=3.10"
dependencies = [
"hvrt>=2.11.0",
"numpy>=1.24",
"scipy>=1.11",
"scikit-learn>=1.3",
]
[project.optional-dependencies]
dev = ["pytest>=7", "pytest-cov", "build"]
cpp-dev = ["scikit-build-core>=0.10", "pybind11>=3.0"]
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501"] # line-length checked by formatter, not linter
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E701", "E702"] # compact multi-statement test helpers are intentional
[tool.scikit-build]
cmake.build-type = "Release"
wheel.packages = ["autoite"]
[tool.scikit-build.cmake.define]
EIGEN3_INCLUDE_DIR = {env = "EIGEN3_INCLUDE_DIR", default = ""}