generated from nicebots-xyz/botkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (55 loc) · 1.28 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
[project]
name = "botkit"
version = "0.1.0"
description = "Auto pcpp: automatically fetch pcpp lists in discord messages"
authors = [
{name = "Paillat-dev", email = "[email protected]"},
]
dependencies = [
"py-cord>=2.5.0",
"aiohttp>=3.9.5",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.1",
"orjson>=3.10.5",
"pytz>=2024.1",
"typing-extensions>=4.12.2",
"schema>=0.7.7",
"hypercorn>=0.17.3",
"quart>=0.19.6",
"pydantic>=2.9.2",
"coloredlogs>=15.0.1",
"pypartpicker>=1.9.5",
"aiocache>=0.12.3",
"aiolimiter>=1.1.0",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
sentry = [
"sentry-sdk>=2.15.0",
]
[tool.pdm.scripts]
format = "ruff format ."
lint = "ruff check --fix ."
export = "pdm export -o requirements.txt --without-hashes --prod"
tests = "pytest tests"
start = "python src"
check-listings = {call = "scripts:check_listings.main"}
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.2.2",
"beautifulsoup4>=4.12.3",
"nodriver>=0.32",
"markdown>=3.6",
"termcolor>=2.4.0",
"basedpyright>=1.18.3",
"ruff>=0.6.9",
]
[tool.pyright]
reportAny = false
reportUnusedCallResult = false
reportUnknownMemberType = false
pythonVersion = "3.11"