-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.29 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
55
56
57
58
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fractalsig"
version = "0.2.0"
description = "Wavelet-based decoder for rough/fractal signal generation."
requires-python = ">=3.11,<3.14"
readme = "README.md"
license = {file = "LICENSE"}
[tool.setuptools.packages.find]
include = ["fractalsig*"]
exclude = ["SigDiffusions*", "tests*", "scripts*", "notebooks*", "outputs*", "checkpoints*", "data*", "results*", "paper*"]
[tool.ruff]
line-length = 100
target-version = "py313"
extend-exclude = [
"SigDiffusions",
"outputs",
"checkpoints",
"data",
"results",
"notebooks",
"Miniconda3-latest-Linux-x86_64.sh",
]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.13"
strict_optional = true
warn_unused_ignores = true
exclude = [
"SigDiffusions/",
"outputs/",
"checkpoints/",
"data/",
"results/",
"notebooks/",
"scripts/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"smoke: fast tests that gate CI (≤ 30 s total)",
"integration: slow tests that train tiny models end-to-end",
"gpu: requires CUDA",
]
filterwarnings = [
"ignore::DeprecationWarning:pkg_resources",
"ignore::PendingDeprecationWarning",
]