Skip to content
Merged
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 .DS_Store
Binary file not shown.
44 changes: 0 additions & 44 deletions .github/workflows/ios.yml

This file was deleted.

89 changes: 88 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,96 @@
# macOS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Xcode
*.xcscmblueprint
*.xccheckout
DerivedData/
.build/
build/
*.xcuserstate
xcuserdata/
*.xcworkspace/xcuserdata/
*.xcodeproj/project.xcworkspace/xcuserdata/
*.xcodeproj/xcuserdata/

# Python Virtual Environments
venv/
.venv/
env/
.env/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
pip-log.txt
pip-delete-this-directory.txt

# Server Dependencies
basic-pitch-server/venv/
basic-pitch-server/__pycache__/
**/node_modules/
**/package-lock.json
**/yarn.lock

# Documentation Build Files
docs/_build/
docs/venv/
**/sphinx/

# Reference Repositories (Large external repos)
references/relevant_repos/aubio/
references/relevant_repos/Audio-Chord-Recognition/
references/relevant_repos/chord-detection/
references/relevant_repos/Chord-Recognition/
references/relevant_repos/ChordRecGen/
references/relevant_repos/dechorder/
references/relevant_repos/omnizart/
references/relevant_repos/librosa/
references/relevant_repos/basic-pitch/
references/relevant_repos/NMFtoolbox/
references/relevant_repos/sphinx_rtd_theme/
references/relevant_repos/rt-cqt/
references/relevant_repos/df0/

# Swift Libraries (External dependencies)
swift_libs/AudioKit/
swift_libs/Tonic/
references/relevant_repos/omnizart/

# Audio Files (test recordings)
chord_recordings/
*.mp3
*.wav
*.m4a
*.aac
*.flac
*.ogg

# ML Models (large binary files)
*.mlpackage/
*.mlmodel
*.h5
*.pb
*.onnx

# PDFs
*.pdf

# Temporary Files
temp/
tmp/
*.tmp
*.swp
*.swo
*~

# IDE Files
.vscode/
.idea/
*.sublime-*
19 changes: 19 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements-minimal.txt
Binary file added Amadeus-Fresh/.DS_Store
Binary file not shown.
Binary file added Amadeus-Fresh/amadeus/.DS_Store
Binary file not shown.
Binary file added Amadeus-Fresh/amadeus/amadeus/.DS_Store
Binary file not shown.
Binary file added Amadeus-iOS/.DS_Store
Binary file not shown.
Binary file added Amadeus-iOS/Amadeus/.DS_Store
Binary file not shown.
23 changes: 23 additions & 0 deletions Amadeus/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions Amadeus/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version: 5.9
import PackageDescription

let package = Package(
name: "Amadeus",
platforms: [
.iOS(.v17)
],
products: [
.library(
name: "Amadeus",
targets: ["Amadeus"])
],
dependencies: [
.package(url: "https://github.com/AudioKit/AudioKit.git", from: "5.6.0"),
.package(url: "https://github.com/AudioKit/Tonic.git", from: "1.0.6")
],
targets: [
.target(
name: "Amadeus",
dependencies: ["AudioKit", "Tonic"])
]
)
Loading