-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
40 lines (35 loc) · 1.05 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
# * native python configuration
[project]
name = "spoti-dl"
version = "2.1.2"
description = "spoti-dl: download songs, albums and playlists using Spotify links"
dependencies = ["spotipy==2.23.0", "python-dotenv==1.0.0", "yt-dlp>=2024.5.27"]
requires-python = ">=3.8"
license = { file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Dhruv Ahuja"}
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Sound/Audio",
"Environment :: Console",
]
[project.urls]
repository = "https://github.com/dhruv-ahuja/spoti-dl/"
[project.optional-dependencies]
dev = ["black"]
test = ["pytest"]
# * rust configuration
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
python-packages = ["spotidl"]
module-name = "spotidl.spotidl_rs"
# this is required to invoke the app as intended
[project.scripts]
spoti-dl = "spotidl.main:main"