From 9a58766525f29845eaa930819e9c096b9991d6cf Mon Sep 17 00:00:00 2001 From: JJ Date: Wed, 19 Mar 2025 22:22:10 +0000 Subject: first commit --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6ecf7d1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[project] +name = "tube-stat" +version = "0.1.0" +description = "" +authors = [ + {name = "JJ",email = "nicetry@noemail.com"} +] +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "click (>=8.1.8,<9.0.0)", + "requests (>=2.32.3,<3.0.0)" +] + +[tool.poetry] +packages = [{include = "tube_stat", from = "src"}] + +[tool.poetry.scripts] +tubestat = "src.tube_stat.cli:cli" + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" -- cgit v1.2.3