Skip to content
Open
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
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: pytest

on: [push]
on:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 0 * * 0' # at 00:00 every Sunday

jobs:
build:
Expand Down
13 changes: 0 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
[project]
name = "auraloss"
version = "0.4.0"
description = "Collection of audio-focused loss functions in PyTorch."
authors = [
{ name = "Christian Steinmetz" },
{ email = "c.j.steinmetz@qmul.ac.uk" },
]
dependencies = ["torch", "numpy"]

[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "attrs"]
build-backend = "setuptools.build_meta"

[project.optional-dependencies]
all = ["matplotlib", "librosa", "scipy", "scipy"]