update packaging file with new CLI

This commit is contained in:
Santiago Martinez 2023-02-26 21:10:44 +00:00
parent e900ddc86d
commit ed21b47f61

View File

@ -2,7 +2,7 @@
[project]
name = "batdetect2"
version = "0.1.0"
version = "0.2.0"
description = "Deep learning model for detecting and classifying bat echolocation calls in high frequency audio recordings."
authors = [{ "name" = "Oisin Mac Aodha", "email" = "oisin.macaodha@ed.ac.uk" }]
dependencies = [
@ -46,7 +46,7 @@ requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[project.scripts]
batdetect2 = "bat_detect.command:main"
batdetect2 = "bat_detect.cli:cli"
[tool.black]
line-length = 80
@ -62,3 +62,9 @@ ignore_missing_imports = true
enabled = false
live_mode = true
strict = true
[tool.pyright]
include = [
"bat_detect",
"tests",
]