-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 951 Bytes
/
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
[build-system]
requires = ["setuptools>=74.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jamjar"
authors = [
{ name = "Anton Van Assche", email = "vanasscheanton@gmail.com" },
]
maintainers = [
{ name = "Anton Van Assche", email = "vanasscheanton@gmail.com" },
]
description = "A CLI tool designed to \"seal\" the history of your Spotify playlists, just like a jar preserves your favorite jams. "
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.12"
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"click",
"requests",
]
[project.scripts]
jamjar = "jamjar.cli:cli"
[project.urls]
Homepage = "https://github.com/AntonVanAssche/JamJar"
Issues = "https://github.com/AntonVanAssche/JamJar/issues"
[tool.setuptools.dynamic]
version = {attr = "jamjar.__version__"}