From 5d32b018602c27d2e59f156ec7bdd6efe0c0f7aa Mon Sep 17 00:00:00 2001 From: ViperEkura <3081035982@qq.com> Date: Fri, 27 Feb 2026 17:38:57 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E5=A2=9E=E5=8A=A0build=20=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c7f4841 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["setuptools>=64", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "khaosz_dataset" +version = "0.1.0" +description = "A dataset processing toolkit for language model training" +readme = "README.md" +requires-python = ">=3.10" +dependencies = [ + "tokenizers>=0.13.0", + "datasets>=2.10.0", + "numpy>=1.21.0", + "tqdm>=4.64.0", + "torch>=2.1.0", + "h5py>=3.7.0", + "regex>=2022.03.15" +] +keywords = ["nlp", "datasets", "language-models", "machine-learning"] +[project.urls] +Homepage = "https://github.com/khaosz/khaosz_dataset" + +[tool.setuptools.packages.find] +where = ["."] \ No newline at end of file