22 lines
501 B
TOML
22 lines
501 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "climbingboardgpt"
|
|
version = "0.2.1"
|
|
description = "Unified TB2/Kilter transformer route modeling, grade prediction, and GPT-style route generation."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"numpy>=1.24",
|
|
"pandas>=2.0",
|
|
"scipy>=1.10",
|
|
"scikit-learn>=1.3",
|
|
"matplotlib>=3.7",
|
|
"torch>=2.1",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|