1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "tmview" version = "1.0.0" license = { file = "LICENSE" } requires-python = ">=3.10" dependencies = [ "httpx>=0.27", "rich>=13", ] [project.scripts] tmview = "tmview.cli:main" [tool.setuptools.packages.find] where = ["src"] include = ["tmview*"]