-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.92 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
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "perception-xalpha-lite"
version = "0.5.0"
description = "Research-only, point-in-time factor discovery with a safe DSL and anti-overfitting guards"
readme = "README_PYPI.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{name = "XU XINGJIAN"}]
dependencies = ["numpy>=1.26", "pandas>=2.1", "scipy>=1.11"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Office/Business :: Financial :: Investment",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent"
]
keywords = ["backtest-overfitting", "deflated-sharpe-ratio", "pbo", "cscv",
"point-in-time", "factor-research", "quantitative-finance", "quant",
"purged-walk-forward", "multiple-testing", "alpha-research",
"data-quality", "lookahead-bias"]
[project.urls]
Homepage = "https://github.com/xuxingjiankr-cpu/perception-xalpha-lite"
Documentation = "https://xuxingjiankr-cpu.github.io/perception-xalpha-lite/"
Repository = "https://github.com/xuxingjiankr-cpu/perception-xalpha-lite"
Changelog = "https://github.com/xuxingjiankr-cpu/perception-xalpha-lite/blob/main/CHANGELOG.md"
Issues = "https://github.com/xuxingjiankr-cpu/perception-xalpha-lite/issues"
[project.optional-dependencies]
data = ["baostock>=0.8"]
[project.scripts]
xalpha-lite = "xalpha_lite.cli:main"
xalpha-evidence = "xalpha_lite.evidence_cli:main"
xalpha-forward = "xalpha_lite.forward_cli:main"
xalpha-doctor = "xalpha_lite.doctor_cli:main"
xalpha-demo = "xalpha_lite.demo_cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]