forked from Traqora/astroml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 740 Bytes
/
Copy pathpyproject.toml
File metadata and controls
24 lines (21 loc) · 740 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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "astroml"
version = "0.1.0"
description = "Dynamic graph ML framework for the Stellar network"
requires-python = ">=3.10"
[tool.setuptools.packages.find]
where = ["."]
include = ["astroml*"]
[tool.pytest.ini_options]
# Scope collection to the dedicated tests/ tree so root-level standalone
# scripts (e.g. test_data_quality_import.py — a manual smoke that calls
# sys.exit(1) on ImportError) don't poison pytest collection.
testpaths = ["tests"]
# Custom markers used by the CI matrix (#186).
markers = [
"gpu: requires a CUDA-capable runner; auto-skipped on CPU-only environments",
"e2e: end-to-end pipeline test (#193)",
]