-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 917 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "musicnotes"
version = "1.14"
description = "Play music notes in your Python scripts with ease."
readme = "README.md"
authors = [{ name = "Mustaeen Ahmed", email = "contact@mustaeen.dev" }]
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"sound",
"music",
"mp3",
"wave",
"wav",
"media",
"song",
"play",
"audio",
"notes",
"music notes",
"melody",
]
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
[tool.setuptools]
packages = ["musicnotes"]
[tool.setuptools.package-data]
musicnotes = ["assets/piano/*.mp3", "assets/guitar/*.mp3"]