-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
57 lines (49 loc) · 1.2 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
[tool.black]
line-length = 115
target-version = ['py310']
[tool.pdm]
[tool.pdm.dev-dependencies]
lint = [
"black>=22.6.0",
"pyright>=1.1.266",
]
tools = [
"pre-commit>=2.20.0",
]
[project]
name = "Discord Message Scheduler"
version = "1.2.3"
description = "A simple Discord Bot that can send scheduled messages."
authors = [
{name = "Taku", email = "[email protected]"},
]
dependencies = [
"aiosqlite~=0.17",
"arrow~=1.2",
"dateparser @ git+https://github.com/scrapinghub/dateparser@0ed979e",
"discord.py @ git+https://github.com/Rapptz/discord.py@d4cc8d30",
"packaging>=21.3",
"python-dateutil~=2.8",
"python-dotenv>=0.20.0",
"rich~=12.5",
"tomli>=2.0.1",
]
requires-python = ">=3.10"
license = {text = "GPL-3.0-only"}
[project.optional-dependencies]
speed = [
"discord.py[speed] @ git+https://github.com/Rapptz/discord.py@d4cc8d30",
"uvloop>=0.16.0; platform_system != \"Windows\"",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pyright]
exclude = ["**/node_modules",
"**/__pycache__",
"**/venv",
]
reportMissingImports = true
pythonVersion = "3.10"
pythonPlatform = "Linux"
typeCheckingMode = "strict"