-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (38 loc) · 976 Bytes
/
pyproject.toml
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
[project]
name = "pyha_analyzer"
description = "Acoustic multiclass training using a dataset generated from PyHa"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["one", "two"]
license = {text = "GPLv3"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"pydub",
"torch",
"torchvision",
"torchaudio",
"pyyaml",
"timm",
"tqdm",
"wandb",
"matplotlib",
"gitpython",
"scikit-learn",
"scipy",
"numpy",
"pandas"
]
version = "0.1.0"
[find]
directories = ["."]
include = ["pyha_analyzer"]
[tool.setuptools]
packages = ["pyha_analyzer"]
[tool.setuptools.package-data]
pyha_analyzer = ["default_config.yml", "config.yml", "models/*","chunking_methods/*"]
exclude = ["*.pyc"]
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/