-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.08 KB
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
[project]
name = "PySoundSphere"
description = "Play Audio Using Python"
version = "0.0.8"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name="Namester (Nmstr)", email="publicNamester@gmail.com" }
]
keywords = ["audio", "playback", "sound"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[project.urls]
Source = "https://github.com/Nmstr/PySoundSphere"
Documentation = "https://nmstr.github.io/PySoundSphere/"
Issues = "https://github.com/Nmstr/PySoundSphere/issues"
[project.optional-dependencies]
pygame-backend = ["pygame"]
sounddevice-backend = [
"sounddevice",
"soundfile",
"numpy",
]
[tool.ruff]
lint.select = ["E4", "E7", "E9", "F", "N8"]
[tool.ruff.lint.per-file-ignores]
"test/*.py" = ["E712"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"