aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cmc.pub>2025-03-29 00:23:35 -0500
committerChristian Cleberg <hello@cmc.pub>2025-03-29 00:23:35 -0500
commitea85cd451eb052e80b38a04e25918290094325b4 (patch)
tree443fccfc7fe2a23443ac993e84436a757b3efc77 /pyproject.toml
downloadnba-scores-ea85cd451eb052e80b38a04e25918290094325b4.tar.gz
nba-scores-ea85cd451eb052e80b38a04e25918290094325b4.tar.bz2
nba-scores-ea85cd451eb052e80b38a04e25918290094325b4.zip
initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml31
1 files changed, 31 insertions, 0 deletions
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"]