-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.02 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
[project]
name = "accprob"
version = "0.1.0"
description = "AtCoder Problems command line tools"
authors = [
{ name = "take0x" },
{ name = "Hietan" }
]
dependencies = [
"selenium>=4.20.0",
"online-judge-tools>=11.5.1",
"setuptools>=69.5.1",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
accprob = "accprob.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.10.0",
"ruff>=0.4.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/accprob"]
[tool.mypy]
strict = true
[tool.ruff]
target-version = "py311"
lint.select = ["ALL"]
lint.ignore = [
"D", # pydocstyle
"ANN1", # Missing type annotation for 'self' and 'cls'
"S603", # 'subprocess' call: check for execution of untrusted input
"COM812", # Trailing comma missing
"ISC001", # Implicitly concatenated string literals on one line
"T201", # 'print' found
]