-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Mopidy-Muse"
authors = [
{name = "Cristian Brokate"},
]
description = "Mopidy interface with snapcast support"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
keywords = ["mopidy", "muse", "svelte"]
license = {file = "LICENSE"}
classifiers = [
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Sound/Audio :: Players"
]
dependencies = [
"Mopidy >= 3.0.0",
"Pykka >= 2.0.1",
"setuptools"
]
version = "0.0.41"
[project.optional-dependencies]
pdf = ["ReportLab>=1.2", "RXP"]
rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
[project.scripts]
muse = "mopidy_muse:Extension"
[project.entry-points."mopidy.ext"]
muse = "mopidy_muse:Extension"
[project.urls]
Homepage = "https://cristianpb.github.io/blog/mopidy-muse"
Documentation = "https://github.com/cristianpb/muse"
Repository = "https://github.com/cristianpb/muse.git"
"Bug Tracker" = "https://github.com/cristianpb/muse/issues"
Changelog = "https://github.com/cristianpb/muse/blob/master/README.md"
[tool.black]
line-length = 80
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_tests = "tests"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,TESTS,LOCALFOLDER"