-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
69 lines (62 loc) · 1.17 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
[tool.poetry]
name = "vjudge-to-oj"
version = "0.1.0"
description = ""
authors = ["Mahmud Sajjad Abeer <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "^4.11.1"
mechanize = "^0.4.8"
pyqt6 = "^6.4.0"
pyqt6-webengine = "^6.4.0"
requests = "^2.28.1"
numpy = "^1.23.4"
python-dotenv = "^0.21.0"
lxml = "^4.9.1"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
pylint = "^2.15.5"
autoflake = "^1.7.7"
pytest = "^7.2.0"
mypy = "^0.982"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
float_to_top = true
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.pylint]
ignore='.venv'
fail-under=7
max-line-length = 120
disable=[
"missing-function-docstring",
"missing-module-docstring",
"missing-class-docstring"
]