-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (43 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "comrade"
description = "A more refined bot for my needs"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dynamic = ["version"]
dependencies = [
"interactions.py[speedup,voice,jurigged] == 5.8.0",
"pymongo >= 4.3",
"beautifulsoup4 >= 4",
"pydub >= 0.25",
"timelength >= 1.1",
"lxml >= 4.9",
"python-decouple >= 3.8",
"levenshtein >= 0.21",
"booru @ git+https://github.com/itchono/booru-modified",
"yt-dlp >= 2023.7",
]
[project.urls]
homepage = "https://github.com/itchono/comrade-next"
[project.scripts]
comrade = "comrade.bot:main"
[project.optional-dependencies]
test = [
"pytest >= 7.3",
"pytest-asyncio >= 0.21",
"pytest-cov >= 4.1"
]
[tool.setuptools_scm]
write_to = "comrade/_version.py"
[tool.setuptools]
packages = ["comrade"]
[tool.black]
line-length = 80
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
asyncio_mode = "auto"
markers = ["bot: marks tests as requiring a bot token",
"online: marks tests as requiring an internet connection"]