forked from Bing-su/genshin-auto-daily-check-in-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 879 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
[tool.poetry]
name = "genshin-auto-daily-check-in-docker"
version = "1.4.3"
description = "원신 호요랩 자동 출석체크 도커 이미지. 여러 계정을 한번에 등록할 수 있습니다."
authors = ["Bingsu <ks2515@naver.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
genshin = "^1.6.0"
rich = "*"
schedule = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
python-dotenv = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.ruff]
select = [
"A",
"B",
"C4",
"C90",
"E",
"EM",
"F",
"FA",
"FURB",
"I001",
"ISC",
"N",
"PERF",
"PIE",
"PT",
"PTH",
"RET",
"RUF",
"SIM",
"T20",
"UP",
"W",
]
ignore = ["B008", "B905", "E501"]
unfixable = ["F401"]