-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
51 lines (43 loc) · 1.25 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "yami-music-player"
version = "1.0.1"
description="An open-source music player with simple UI"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = [
"tkinter",
"youtube-music-player",
"spotdl",
"online-music-player",
"customtkinter",
"youtube-dl",
"music-player",
"spotify"]
authors = [{name = "Mithun", email="[email protected]"}]
maintainers = [{name = "Mithun", email="[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3"
]
dynamic = ["dependencies"]
[project.urls]
Documentation = "https://github.com/dever-m/yami/blob/main/README.md"
"Bug Tracker" = "https://github.com/dever-m/yami/issues"
"Source code" = "https://github.com/dever-m/yami"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where=["."]
[tool.setuptools.package-data]
yami = ["./yami/data/*"]
[project.scripts]
yami = "yami.main:entry"