-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (33 loc) · 958 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (33 loc) · 958 Bytes
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
[project]
name = "vocal"
description = "A vocal source separation"
version = "0.0.5"
dependencies = ["tqdm", "torch", "numpy", "huggingface-hub", "click", "soundfile", "librosa"]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
[project.urls]
Homepage = "https://github.com/seanghay/vocal"
Repository = "https://github.com/seanghay/vocal"
[[project.authors]]
name = "Seanghay Yath"
email = "seanghay.dev@gmail.com"
[project.scripts]
vocali = "vocal:cli.cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["vocal"]
[tool.ruff]
indent-width = 2
[tool.ruff.lint]
ignore = ["E741"]