blob: 2133f024639984cec1ac1e1e173cc8af9acef4d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
[project]
name = "nba-scores"
version = "0.1.7"
authors = [
{ name="Christian Cleberg", email="[email protected]" },
]
description = "A CLI interface to get current NBA scores and standings."
readme = "README.md"
requires-python = ">=3.9"
license = "GPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"nba_api",
"tabulate",
"argparse",
"textual>=0.89.1,<7.0"
]
[project.urls]
Homepage = "https://git.cleberg.net/nba-scores.git"
Issues = "https://git.cleberg.net/nba-scores.git"
[project.scripts]
nba = "nba.cli:nba"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = true
[tool.setuptools.packages.find]
where = ["."]
include = ["nba*"]
[tool.setuptools.package-data]
"nba.tui" = ["*.tcss"]
|