| [build-system] | |
| requires = ["setuptools>=61.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "chordia" | |
| version = "0.0.1-alpha" | |
| description = "弦音 (Chordia): 高精度 AI 情感动力学内核" | |
| readme = "README.md" | |
| requires-python = ">=3.8" | |
| license = {text = "MIT"} | |
| authors = [ | |
| {name = "Corolin"} | |
| ] | |
| dependencies = [ | |
| "torch>=1.12.0", | |
| "numpy>=1.21.0", | |
| "pandas>=1.3.0", | |
| "scikit-learn>=1.0.0", | |
| "PyYAML>=6.0", | |
| "omegaconf>=2.2.0", | |
| "click>=8.0.0", | |
| "tqdm>=4.62.0", | |
| "matplotlib>=3.5.0", | |
| "seaborn>=0.11.0", | |
| "loguru>=0.6.0", | |
| "typing-extensions>=4.0.0", | |
| "pydantic>=1.8.0", | |
| "scipy>=1.7.0" | |
| ] | |
| [project.scripts] | |
| chordia = "src.cli.main:main" | |
| [tool.setuptools] | |
| package-dir = {"" = "."} | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["src*"] | |