-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 loc) · 869 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = 'reCaptcha Solver'
version = '1.0.1'
description = 'reCaptcha Solver'
authors = ['hoanshiro <[email protected]>']
readme = 'README.md'
[tool.poetry.dependencies]
python = '^3.10'
[tool.poetry.group.dev.dependencies]
pre-commit = '2.21.0'
black = '23.3.0'
flake8 = '6.0.0'
pyright = '1.1.302'
ruff = '0.0.261'
[build-system]
requires = ['poetry-core>=1.0.0']
build-backend = 'poetry.core.masonry.api'
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| \.toml
| \.yml
| \.sh
| Dockerfile
)/
'''
skip-string-normalization = true
[tool.pyright]
pythonVersion = '3.10'
pythonPlatform = 'Linux'
[tool.ruff]
ignore = [
'E501',
'W605',
]
select = [
'E',
'F',
'W',
'I',
]
[tool.ruff.isort]
combine-as-imports = true