mirror of
https://github.com/macaodha/batdetect2.git
synced 2025-06-29 14:41:58 +02:00
added pyproject file
This commit is contained in:
parent
2dc385a700
commit
24cea6d76e
48
pyproject.toml
Normal file
48
pyproject.toml
Normal file
@ -0,0 +1,48 @@
|
||||
[tool.pdm]
|
||||
|
||||
[project]
|
||||
name = "batdetect2"
|
||||
version = "0.1.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 = [
|
||||
"librosa",
|
||||
"matplotlib",
|
||||
"numpy",
|
||||
"pandas",
|
||||
"scikit-learn",
|
||||
"scipy",
|
||||
"torch",
|
||||
"torchaudio",
|
||||
"torchvision",
|
||||
]
|
||||
requires-python = ">=3.8"
|
||||
readme = "README.md"
|
||||
license = { text = "CC-by-nc-4" }
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Science/Research",
|
||||
"Natural Language :: English",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: Multimedia :: Sound/Audio :: Analysis",
|
||||
]
|
||||
keywords = [
|
||||
"bat",
|
||||
"echolocation",
|
||||
"deep learning",
|
||||
"audio",
|
||||
"machine learning",
|
||||
"classification",
|
||||
"detection",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["pdm-pep517>=1.0.0"]
|
||||
build-backend = "pdm.pep517.api"
|
||||
|
||||
[project.scripts]
|
||||
batdetect2 = "bat_detect.command:main"
|
Loading…
Reference in New Issue
Block a user