-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (37 loc) · 1.1 KB
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flamo"
version = "0.0.18"
authors = [
{ name="Gloria Dal Santo", email="[email protected]" },
{ name="Gian Marco De Bortoli", email="[email protected]"},
{ name="Sebastian J. Schlecht", email="[email protected]"}
]
maintainers = [
{ name="Gloria Dal Santo", email="[email protected]" },
{ name="Gian Marco De Bortoli", email="[email protected]"},
]
description = "An Open-Source Library for Frequency-Domain Differentiable Audio Processing"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["audio", "signal processing", "differentiable programming", "machine learning", "optimization"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"torch",
"torchaudio",
"numpy",
"scipy",
"PySoundFile",
"tqdm",
"matplotlib",
"pydantic",
]
[project.urls]
Homepage = "https://github.com/gdalsanto/flamo"
Issues = "https://github.com/gdalsanto/flamo/issues"