-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
85 lines (77 loc) · 1.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["flit_core>=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qbt_migrate"
authors = [
{name = "Justin Slay", email = "[email protected]"},
]
dependencies = [
"bencode.py==4.0.0",
]
requires-python = ">=3.8"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: File Sharing",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Recovery Tools",
"Typing :: Typed",
]
dynamic = [
"version",
"description",
]
[project.optional-dependencies]
dev = [
"bandit",
"black",
"coverage",
"diff-cover",
"isort",
"pre-commit",
"pytest>=2.7.3",
"ruff",
]
test = [
"tox",
]
[project.urls]
Source = "https://github.com/jslay88/qbt_migrate"
[project.scripts]
qbt_migrate = "qbt_migrate.cli:main"
[tool.bandit]
exclude_dirs = [
"tests",
]
[tool.black]
line-length = 79
target-version = ['py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 79
lines_after_imports = 2
skip = [".tox", "venv"]
[tool.ruff]
exclude = [
"venv",
"__init__.py",
]
line-length = 79
select = [
"B",
"C",
"E",
"F",
"W",
]