-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 734 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (23 loc) · 734 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "neuroquant"
version = "1.1.0"
description = "A quant-inspired, reproducible Python research and analytics lab built on a synthetic signal series (validation, baseline comparison, in/out-of-sample and walk-forward testing, Monte Carlo robustness, KPI reporting)."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "NeuroQuantAI" }]
dependencies = [
"pandas>=2.0",
"numpy>=1.24",
"matplotlib>=3.7",
]
[project.optional-dependencies]
dev = ["pytest>=7.4"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]