forked from Feramance/qBitrr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 805 Bytes
/
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
[tool.isort]
profile = "black"
line_length = 99
py_version = 38
known_third_party = [
"cachetools",
"colorama",
"coloredlogs",
"environ",
"ffmpeg",
"jaraco.docker",
"packaging",
"pathos",
"peewee",
"ping3",
"pyarr",
"qbittorrentapi",
"requests",
"tomlkit",
"ujson",
]
known_local_folder = ["qBitrr"]
[tool.black]
line-length = 99
target-version = ['py38']
[tool.poetry]
name = "pypi-public"
version = "4.6.0"
description = "A simple script to monitor qBit and communicate with Radarr and Sonarr"
authors = ["Drapersniper", "Feramance"]
readme = "README.md"
repository = "https://github.com/Feramance/qBitrr"
url = "https://pypi.org/simple/"
[tool.autopep8]
max_line_length = 99
ignore = "E712"
in-place = true
recursive = true
aggressive = 3