-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "nightingale"
version = "0.1.0"
description = "Nightingale - A Bird Call Classification Algorithm"
authors = [
{ name= "Ephraim Eckl" },
{ name= "David Pellhammer"}
]
readme = "README.md"
license-files = [ "LICENSE" ]
requires-python = ">=3.11,<3.12"
dependencies = [
"tensorflow==2.20.0",
"tensorflow-hub==0.16.1",
"fastapi==0.116.2",
"mlflow[databricks]>=3.4.0,<4.0.0",
"uvicorn==0.37.0",
"python-multipart==0.0.20",
"python-dotenv>=1.1.1,<2.0.0"
]
[dependency-groups]
doc = [
"sphinx==8.2.3",
"sphinx-rtd-theme==3.0.2"
]
dev = [
"numpy==2.3.3",
"scikit-learn==1.7.2",
"matplotlib==3.10.6",
"seaborn==0.13.2",
"ipykernel==6.30.1",
"ipywidgets==8.1.7",
"tensorflow==2.20.0",
"tensorflow-io==0.37.1",
"tensorflow-hub==0.16.1",
"pydub==0.25.1",
"librosa==0.11.0"
]
test = [
"pytest==8.4.2"
]
[project.urls]
repository = "https://github.com/emilcode-dev/nightingale"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
testpaths = [
"tests"
]