blob: 39d6bc19724d42819be4c93a75ba9834792fe064 (
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
|
[project]
name = "nba-scores"
version = "0.1.7"
authors = [
{ name="Christian Cleberg", email="hello@cmc.pub" },
]
description = "A CLI interface to get current NBA scores and standings."
readme = "README.md"
requires-python = ">=3.8"
license = "GPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"nba_api",
"tabulate",
"argparse"
]
[project.urls]
Homepage = "https://github.com/ccleberg/nba-scores"
Issues = "https://github.com/ccleberg/nba-scores/issues"
[project.scripts]
nba = "nba.cli:nba"
[tool.setuptools.packages.find]
where = ["."]
include = ["nba"]
|