-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1.02 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
[build-system]
requires = ["setuptools ~= 67.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
# include the name of the folder containing the library
include = ["ddsp"]
[project]
name = "dafx25-ddsp-tutorial"
version = "0.0.1"
authors = [
{ name="Gloria Dal Santo", email="gloria.dalsanto@aalto.fi" },
]
maintainers = [
{ name="Gloria Dal Santo", email="gloria.dalsanto@aalto.fi" },
]
description = "A tutorial for the DAFx25 conference on 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 = [
"flamo==0.2.7",
"ipykernel",
"IPython",
]
[project.urls]
Homepage = "https://github.com/gdalsanto/dafx25-ddsp-tutorial"
Issues = "https://github.com/gdalsanto/dafx25-ddsp-tutorial/issues"