-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (44 loc) · 1.3 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
[project]
name = "richspot"
description = "ncspot discord rich presence"
version = "1.0.3"
keywords = ["Spotify", "Spotify Rich Presence", "Rich Presence", "Ncspot", "Ncspot Rich Presence", "Discord", "Discord Rich Presence", "Spotify Connect"]
authors = [
{ name = "Younes Ben El", email = "[email protected]" }
]
dependencies = [
"pypresence",
"requests",
"PyYaml"
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Documentation = "https://github.com/m1ndo/RichSpot"
Source = "https://github.com/m1ndo/RichSpot"
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[project.scripts]
richspot = "richspot:run"
[tool.pyright]
include = ["."]
exclude = ["**/__pycache__",]
defineConstant = { DEBUG = true }
venv = "venv"
reportMissingImports = true
# reportMissingTypeStubs = false
reportGeneralTypeIssues = false
pythonVersion = "3.11"
pythonPlatform = "Linux"