Make package pip-installable

pull/49/head
Ethan Wick 2023-02-16 15:16:44 +00:00
parent a8b296fc1e
commit 51788a2167
1 changed files with 25 additions and 0 deletions

25
pyproject.toml 100644
View File

@ -0,0 +1,25 @@
[build-system]
requires = [ "setuptools>=61.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "spotify-backup"
version = "0.1.0"
authors = [
{ name = "Casey Chu", email = "caseychu9@gmail.com" },
{ name = "Ethan Wick" }
]
description = "A Python script that exports your Spotify library"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/caseychu/spotify-backup"
"Bug Tracker" = "https://github.com/caseychu/spotify-backup/issues"
[project.scripts]
spotify-backup = "spotifybackup:main"