-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (68 loc) · 1.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "echo-pam"
version = "0.1.0"
description = "Reference implementation of ECHO for context-calibrated shrimp feed-intake estimation."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Xin Huang"},
{name = "Xiaoye Han"},
{name = "Yesen Li"},
{name = "Chao Liu"},
{name = "Zhongwen Guo"},
{name = "Fang Wang"},
{name = "Chao Yang"}
]
maintainers = [
{name = "Chao Yang", email = "chao.yang@ouc.edu.cn"}
]
keywords = [
"aquaculture",
"passive acoustic monitoring",
"feed intake estimation",
"mamba",
"multimodal learning"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"PyYAML>=6.0",
"scikit-learn>=1.3",
"torch>=2.1",
"torchaudio>=2.1",
"tqdm>=4.66"
]
[project.optional-dependencies]
mamba = [
"mamba-ssm>=2.2",
"causal-conv1d>=1.4"
]
xgboost = [
"xgboost>=2.0"
]
dev = [
"pytest>=8.0",
"ruff>=0.6"
]
[project.urls]
Homepage = "https://github.com/OucAI4ScienceLab/Echo"
Repository = "https://github.com/OucAI4ScienceLab/Echo"
Issues = "https://github.com/OucAI4ScienceLab/Echo/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"