-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (22 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
23 lines (22 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "spleeter-cli"
version = "1.0"
description = ""
readme = "README.md"
requires-python = ">=3.10.2"
dependencies = [
"auto-py-to-exe >=2.44.2",
"tensorflow >=2.5.0, <2.10.0",
"tensorflow-io-gcs-filesystem ==0.27.0",
"spleeter >=2.4.0",
"numpy <2",
"gevent ==23.9.1",
"ffmpeg-python >=0.2.0",
"pyinstaller==5.13.2",
"setuptools==66.1.1",
]
# Note: The original 'python = "3.10.2"' dependency is converted to 'requires-python = ">=3.10.2"'
# in the [project] table, which is the standard way to specify the required Python version.
# The `==` operator is used for exact versions like `0.27.0` and `23.9.1`.
# The `^` operator from Poetry is generally translated to `>=x.y.z, <(x+1).0.0` for x>0, or `>=0.y.z, <0.(y+1).0` for x=0.
# I've used the more conventional format for the version specifiers in the dependencies list.