43 lines
874 B
TOML
43 lines
874 B
TOML
[project]
|
|
name = "suinput"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"bokeh>=3.8.2",
|
|
"datasets>=4.5.0",
|
|
"ipykernel>=7.2.0",
|
|
"ipython>=9.10.0",
|
|
"loguru>=0.7.3",
|
|
"modelscope>=1.34.0",
|
|
"msgpack>=1.1.2",
|
|
"numpy>=2.4.2",
|
|
"pandas>=3.0.0",
|
|
"pypinyin>=0.55.0",
|
|
"rich>=14.3.1",
|
|
"transformers>=5.1.0",
|
|
"typer>=0.21.1",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"autocommit",
|
|
"marimo>=0.19.9",
|
|
"pytest>=9.0.2",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
autocommit = { git = "https://gitea.winkinshly.site/songsenand/autocommit.git" }
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
# 👇 这是关键:指定包在 src/ 下
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|