From ea85cd451eb052e80b38a04e25918290094325b4 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 29 Mar 2025 00:23:35 -0500 Subject: initial commit --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e8f90cb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[project] +name = "nba-cli" +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-cli" +Issues = "https://github.com/ccleberg/nba-cli/issues" + +[project.scripts] +nba = "nba.cli:nba" + +[tool.setuptools.packages.find] +where = ["."] +include = ["nba"] -- cgit v1.2.3-70-g09d2