-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
59 lines (51 loc) · 1.55 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qbittorrentui"
version = "0.3.6"
requires-python = ">=3.8"
description = "Console UI for qBittorrent v4.1+"
authors = [{name = "Russell Martin"}]
maintainers = [{name = "Russell Martin"}]
keywords = ["qbittorrent", "console", "terminal", "TUI", "text"]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Topic :: Communications :: File Sharing",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["readme"]
dependencies = [
"qbittorrent-api",
"urwid ==2.6.16",
"blinker ==1.8.2",
"panwid ==0.3.5",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"tox",
]
[project.urls]
"Homepage" = "https://github.com/rmartin16/qbittorrentui"
"Source" = "https://github.com/rmartin16/qbittorrentui"
[project.scripts]
qbittorrentui = "qbittorrentui.__main__:main"
[tool.setuptools.dynamic]
readme = {file = ["README.md", "LICENSE"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.isort]
profile = "black"