From f9639acfb0ed5e69e1358a6eb7abbfe9c7e9a180 Mon Sep 17 00:00:00 2001 From: asakura42 <51290160+asakura42@users.noreply.github.com> Date: Sun, 17 Mar 2024 20:32:46 +0000 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..22f3829 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "btstrm" +version = "0.1.0" +description = "A script to stream torrents using BTFS" +readme = "README.md" +authors = [{ name = "asakura42" }] +license = {text = "GPL-3"} +classifiers = [ + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Programming Language :: Python :: 3", +] +keywords = ["torrent", "streaming", "btfs"] +dependencies = [ + "requests", + "tqdm", + "colorama", + "unidecode", + "beautifulsoup4", +] + +[project.scripts] +btstrm = "btstrm.__main__:main" + +[project.urls] +"Homepage" = "https://github.com/asakura42/btstrm" +"Bug Tracker" = "https://github.com/asakura42/btstrm/issues"