aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: f85028fa0647b17b5ae818342a8c727a1d4045ed (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
[project]
name = "nba-scores"
version = "0.1.0"
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",
    "json"
]

[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"]