-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
132 lines (105 loc) · 3.23 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "tor-brute"
authors = [
{ name = "ThomasByr", email = "tbouyer2000@gmail.com" },
{ name = "LosKeeper", email = "thomas.dumond2001@gmail.com" },
]
description = "Forms brute-forcer via Tor"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
# ------------------------------------------------------------------------------
[tool.isort]
profile = "black"
# ------------------------------------------------------------------------------
[tool.ruff]
# Enable the pycodestyle (`E`) and Pyflakes (`F`) rules by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
# Enable flake8-bugbear (`B`) rules, in addition to the defaults.
select = ["E", "F", "B"]
ignore = ["E501"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = ["B"]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hatch",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
# Same as Black.
line-length = 110
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Assume Python 3.8
target-version = "py38"
# Ignore `E402` (import violations) in all `__init__.py` files
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F403"]
"**/{tests,docs,tools}/*" = ["E402"]
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
# ------------------------------------------------------------------------------
[tool.black]
line-length = 110
target-version = ['py38']
include = '\.pyi?$'
# ------------------------------------------------------------------------------
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests", "integration"]
# ------------------------------------------------------------------------------
[tool.hatch.version]
path = "src/version.py"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
dev = ["requirements-dev.txt"]
[tool.hatch.build.targets.sdist]
exclude = [".github", "docs"]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.urls]
Documentation = "https://github.com/ThomasByr/tor-brute/wiki"
Issues = "https://github.com/ThomasByr/tor-brute/issues"
Source = "https://github.com/ThomasByr/tor-brute"
[tool.hatch.envs.dev]
path = ".hatch"
features = ["dev"]
[tool.hatch.envs.dev.scripts]
test = "python -m pytest"
lint = "python -m ruff ."
style = "python -m black --check src"
fmt = "python -m black src"
check = ["test", "lint", "style"]