-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (69 loc) · 2.52 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
[tool.poetry]
name = "lite-spleeter"
version = "1.0.3"
description = "A very lite version of The Deezer source separation library with very low RAM usage and the same results of the original Spleeter."
authors = ["Mohammad Mansour <mohammadamansour03@gmail.com>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/mohammadmansour200/lite-spleeter"
homepage = "https://github.com/mohammadmansour200/lite-spleeter"
classifiers = [
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Artistic Software",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
packages = [ { include = "spleeter" } ]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
ffmpeg-python = "^0.2.0"
typer = "^0.3.2"
tensorflow-cpu = "^2.5.0, <2.11.0"
pandas = "^1.3.0"
norbert = "^0.2.1"
numpy = "<2.0.0"
scipy = ">=1.8.1"
[tool.poetry.dev-dependencies]
isort = "^5.7.0"
black = "^21.7b0"
mypy = "^0.991"
flake8 = "^5.0.0"
[tool.poetry.scripts]
lite-spleeter = 'spleeter.__main__:entrypoint'
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pytest.ini_options]
addopts = "-W ignore::FutureWarning -W ignore::DeprecationWarning -vv --forked"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"