forked from lumina37/rotate-captcha-crack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 959 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
urls = { Repository = "https://github.com/Starry-OvO/rotate-captcha-crack" }
name = "rotate-captcha-crack"
readme = "README.md"
requires-python = ">=3.8,<3.12"
authors = [{ name = "Starry-OvO", email = "starry.qvq@gmail.com" }]
dependencies = [
"torch>=1.11.0",
"torchvision>=0.12.0",
"matplotlib<4,>=3.4",
"tomli<3,>=2.0.0;python_version<'3.11'",
"tqdm<5,>=4",
]
dynamic = ["version"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = { attr = "rotate_captcha_crack.__version__.__version__" }
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ["py38"]
[tool.ruff]
line-length = 120
select = ["W", "E", "F", "I"]
ignore = ["E402", "E501"]
target-version = "py38"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"typing.py" = ["F401"]