-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 880 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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sp-cci"
version = "0.1.0"
description = "Synthetic-Powered Conformal Counterfactual Inference (SP-CCI) experiments"
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = " "}]
dependencies = [
"numpy>=1.23",
"pandas>=1.5",
"scikit-learn>=1.2",
"matplotlib>=3.6",
"tqdm>=4.66",
"scipy>=1.9",
]
[project.optional-dependencies]
torch = ["torch>=2.0"]
rt = [
"tensorflow>=2.11",
# Sionna is TF-based; install a version compatible with your TF & CUDA.
# Example: "sionna>=0.15"
]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
[tool.flake8]
max-line-length = 100
extend-ignore = ["E203","W503"]