Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified harmonydagger/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified harmonydagger/__pycache__/common.cpython-312.pyc
Binary file not shown.
Binary file modified harmonydagger/__pycache__/psychoacoustics.cpython-312.pyc
Binary file not shown.
34 changes: 17 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "harmonydagger"
version = "0.3.5"
version = "0.4.0"
description = "A tool for protecting audio against use in AI training"
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -26,28 +26,28 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.20.0",
"scipy>=1.7.0",
"librosa>=0.9.0",
"soundfile>=0.10.0",
"tqdm>=4.60.0",
"matplotlib>=3.4.0",
"pydub>=0.25.1", # For MP3 writing support
"numpy",
"scipy",
"librosa",
"soundfile",
"tqdm",
"matplotlib",
"pydub", # For MP3 writing support
]

[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"black>=23.0.0",
"isort>=5.10.0",
"mypy>=0.910",
"flake8>=4.0.0",
"twine>=4.0.0",
"pytest",
"pytest-cov",
"black",
"isort",
"mypy",
"flake8",
"twine",
]
docs = [
"sphinx>=4.5.0",
"sphinx-rtd-theme>=1.0.0",
"sphinx",
"sphinx-rtd-theme",
]

[project.urls]
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Core dependencies
numpy>=1.20.0
scipy>=1.7.0
soundfile>=0.10.0
matplotlib>=3.4.0
numpy
scipy
soundfile
matplotlib

# Development dependencies (optional)
pytest>=6.0.0
black>=21.5b2
isort>=5.9.1
pytest
black
isort
Binary file modified tests/__pycache__/__init__.cpython-312.pyc
Binary file not shown.