aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
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"]