forked from iamkroot/trakt-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.52 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
[tool.poetry]
name = "trakt-scrobbler"
version = "1.6.3"
description = "Scrobbler for trakt.tv that supports VLC, Plex, MPC-HC, and MPV"
authors = ["iamkroot <kroot.patel@gmail.com>"]
readme = "README.md"
repository = "https://github.com/iamkroot/trakt-scrobbler"
license = "GPL-2.0-only"
keywords = ["trakt", "scrobbler"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
include = [
{path = "tests", format = "sdist"},
{path = "completions/**/*.*?sh", format = "sdist"}
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.25.1"
urllib3 = "^1.26.0"
guessit = "^3.3.1"
appdirs = "^1.4.4"
pywin32 = {version = ">=227", platform = "win32"}
cleo = "^0.8.1"
confuse = "^2.0"
pysocks = {version = "^1.7.1", optional = true}
urlmatch = "^1.0.1"
pydantic = "^1.10.2"
tomli = {version = "^2.0.1", python = "<3.11"}
desktop-notifier = {version = "^3.4.2", markers = "sys_platform != 'win32'"}
win10toast = {version = "^0.9", platform = "win32"}
setuptools = "^65.5.1"
[tool.poetry.dev-dependencies]
[tool.poetry.extras]
socks = ["pysocks"]
[tool.poetry.scripts]
trakts = "trakt_scrobbler.console:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
reportGeneralTypeIssues = false
reportImplicitStringConcatenation = false
[tool.black]
line-length = 88
target-version = ['py37']
skip-string-normalization = true