-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.34 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
[project]
name = "aiospotify.py"
dynamic = ["version", "description"]
authors = [ { name="novanai" } ]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiohttp==3.9.5",
"pydantic==2.8.2",
]
keywords = ["spotify", "api", "async", "asynchronous"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
[project.optional-dependencies]
dev = ["nox==2024.4.15"]
"dev.format" = ["ruff==0.5.4"]
"dev.typecheck" = ["pyright==1.1.373"]
"dev.release" = ["flit==3.9.0"]
"dev.docs" = [
"mkdocs==1.6.0",
"mkdocs-include-markdown-plugin==6.2.1",
"mkdocs-material==9.5.30",
"mkdocs-minify-plugin==0.8.0",
"mkdocstrings-python==1.10.5",
]
[project.urls]
Documentation = "https://aiospotifypy.readthedocs.io/en/stable/"
Repository = "https://github.com/novanai/aiospotify.py"
Issues = "https://github.com/novanai/aiospotify.py/issues"
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "spotify"
[tool.ruff]
exclude = ["docs", "site"]
line-length = 99
target-version = "py310"
[tool.pyright]
strict = ["spotify"]