blob: 17dc4302d3b308922747cf0a1c6ebfb12f116eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[project]
name = "tube-stat"
version = "0.1.3"
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.scripts]
tubestat = "tube_stat.cli:cli"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
|