forked from sublime-music/sublime-music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (86 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sublime_music"
authors = [
{name = "Sumner Evans", email = "[email protected]"}
]
dynamic = ["version", "description"]
readme = "README.rst"
requires-python = ">=3.10,<4"
license = {file = "LICENSE"}
keywords = ["airsonic", "music", "GTK", "chromecast", "subsonic"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Topic :: Multimedia :: Sound/Audio :: Players",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dependencies = [
"bleach",
"bottle",
"dataclasses-json",
"deepdiff",
"Levenshtein",
"peewee",
"pychromecast",
"PyGObject",
"python-dateutil",
"mpv",
"requests",
"semver",
"thefuzz",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"flake8-annotations",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-pep3101",
"flake8-print",
"flit",
"isort",
"mypy",
"pip-tools",
"pre-commit",
"requirements-parser",
"termcolor",
"types-bleach",
"types-peewee",
"types-python-dateutil",
"types-pyyaml",
"types-requests",
"types-tabulate",
"types-termcolor",
]
doc = [
"docutils <0.17",
"rst2html5",
"sphinx <5",
"sphinx_rtd_theme",
]
test = [
"pytest",
"pytest-cov",
]
keyring = ["keyring"]
[project.urls]
Homepage = "https://sublimemusic.app"
Documentation = "https://docs.sublimemusic.app"
"Source Code" = "https://github.com/sublime-music/sublime-music"
"Bug Tracker" = "https://github.com/sublime-music/sublime-music/issues"
[project.scripts]
sublime-music = 'sublime_music.__main__:main'
[tool.isort]
profile = "black"
combine_as_imports = true
known_first_party = "sublime_music"
line_length = 99
[tool.black]
line-length = 99
target-version = ["py38"]