-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
108 lines (96 loc) · 2.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = [
"hatchling>=1.0.0",
]
build-backend = "hatchling.build"
[project]
name = "mimikit"
description = "Python package for generating audio with neural networks"
readme = "README.md"
license-files = { paths = ["LICENSE"] }
requires-python = ">=3.7"
authors = [
{ name = "Antoine Daurat", email = "[email protected]" },
]
keywords = [
"audio",
"deep-learning",
"music",
"sound",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
]
dependencies = [
"ffmpeg-python",
"h5mapper>=0.3.1",
"ipywidgets==7.7.1",
"librosa>=0.9.1",
"matplotlib",
"numba",
"numpy>=1.19.1",
"omegaconf>=2.3.0",
"pandas>=1.1.3",
"peaksjs_widget",
"pyamg",
"pydub",
"pypbind",
"qgrid",
"scikit-learn>=1.0.0",
"scipy>=1.4.1",
"soundfile>=0.10.2",
"soxr",
"tables>=3.6",
"test-tube>=0.7.5",
"tqdm>=4.48.0",
]
dynamic = [
"version",
]
[project.optional-dependencies]
colab = [
"torchaudio==2.0.1+cu118",
"pytorch-lightning>=2.0.2",
]
torch = [
"torch==2.0.0",
"torchaudio==2.0.1",
"pytorch-lightning>=2.0.2",
]
test = [
"assertpy==1.1",
"pytest"
]
[project.scripts]
segment = "mimikit.extract.segment:segment"
stretch = "mimikit.extract.segment:re_stretch"
[project.urls]
Download = "https://github.com/ktonal/mimikit"
Homepage = "https://github.com/ktonal/mimikit"
[tool.hatch.commands]
prerelease = "hatch build"
[tool.hatch.version]
path = "./mimikit/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
packages = ["mimikit/"]
[tool.hatch.build.targets.wheel]
packages = ["mimikit/"]
[tool.hatch.envs.default.env-vars]
PIP_EXTRA_INDEX_URL = "https://download.pytorch.org/whl/cu116 https://pypi.org/simple/"
[requires]
python_version = [
"3.7",
"pypy",
"pypy3",
]