aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 107ce440cc82e7408993aa3ff34ecf9c4c1e7a91 (plain) (blame)
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*"]