-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.04 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
[project]
name = "takohachi"
version = "1.0.0"
description = "Gangsta Discord bot"
authors = [
{ name = "Yuki Koyama", email = "" },
{ name = "zztkm", email = "[email protected]" }
]
dependencies = [
"discord.py[voice]~=2.4.0",
"gspread~=6.1.4",
"requests~=2.32.3",
"beautifulsoup4~=4.12.2",
"oauth2client~=4.1.3",
"pydrive2~=1.21.3",
"spotipy~=2.25.0",
"httpx~=0.28.1",
"tenacity~=9.0.0",
"yfinance>=0.2.36",
]
readme = "README.md"
license = "MIT"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.rye]
managed = true
dev-dependencies = [
"tox~=4.6.0",
"pre-commit~=3.3.2",
"pytest~=7.3.1",
"tox-gh>=1.2.0",
]
[tool.rye.scripts]
check = "pre-commit run --all-files"
tox = "tox"
add = "python scripts/db_insert_data.py"
delete = "python scripts/db_delete_data.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.black]
line-length = 98
[tool.ruff]
line-length = 128