From 9d61921377d5aa3e757d23cfd11844cc8f632ec3 Mon Sep 17 00:00:00 2001 From: Kevin Date: Tue, 19 Sep 2023 10:40:22 +0200 Subject: [PATCH] feat: add pyproject install --- pyproject.toml | 10 ++++++++++ transfusion/__init__.py | 0 wavlm/__init__.py | 0 3 files changed, 10 insertions(+) create mode 100644 pyproject.toml create mode 100644 transfusion/__init__.py create mode 100644 wavlm/__init__.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1967ad9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,10 @@ +[project] +name = "transfusion" +version = "0.1.0" + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[tool.setuptools] +packages = ["transfusion", "wavlm"] diff --git a/transfusion/__init__.py b/transfusion/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/wavlm/__init__.py b/wavlm/__init__.py new file mode 100644 index 0000000..e69de29