pyproject.toml 420 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "title-norm"
version = "0.1.0"
description = "歌名归一化与版本提取算法(archive-bridge internal/subject/normalize.go 的 Python 移植)"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
    "opencc-python-reimplemented>=0.1.4",
]

[tool.setuptools.packages.find]
include = ["title_norm*"]