-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (74 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (74 loc) · 2.11 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
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepfense"
version = "0.2.2"
description = "A Modular, Extensible Framework for Deepfake Audio Detection (ASV Spoofing)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "DeepFense Team"}
]
keywords = ["deepfake", "audio", "spoofing", "detection", "asv", "speech", "security"]
dependencies = [
"torch>=2.1.0,<=2.9",
"torchaudio>=2.1.0,<=2.9",
"torchvision>=0.12.0,<=0.23",
"numpy>=1.24,<2.2",
"pandas>=2.0,<3.0",
"scipy>=1.9,<1.16",
"scikit-learn>=1.2,<1.8",
"pyarrow",
"librosa>=0.10,<0.12",
"pydub",
"soundfile",
"soxr",
"transformers>=4.50,<5.0",
"tokenizers",
"tqdm",
"typing-extensions",
"safetensors",
"wandb>=0.12,<1.0",
"einops>=0.7,<1.0",
"matplotlib>=3.7,<4.0",
"seaborn>=0.12,<0.14",
"timm",
"omegaconf>=2.0.6",
"click>=8.0.0",
"huggingface_hub>=0.20",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
]
[project.urls]
Homepage = "https://deepfense.github.io/"
Documentation = "https://deepfense.readthedocs.io/"
Repository = "https://github.com/Yaselley/deepfense-framework"
Issues = "https://github.com/Yaselley/deepfense-framework/issues"
"Bug Tracker" = "https://github.com/Yaselley/deepfense-framework/issues"
"HuggingFace" = "https://huggingface.co/DeepFense"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"flake8>=4.0",
]
[tool.setuptools]
# Use find_packages() to automatically discover all packages including subpackages
packages = { find = {} }
[tool.setuptools.package-data]
deepfense = [
"config/*.yaml",
"config/**/*.yaml",
]
[project.scripts]
deepfense = "deepfense.cli.main:cli"