forked from srobo/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (46 loc) · 1.11 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "sr.discord_bot"
version = "2025.0.0"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"python-dotenv==1.0.1",
"discord.py==2.4.0",
"feedparser==6.0.11",
"beautifulsoup4==4.12.3",
]
classifiers = [
"Private :: Do Not Upload"
]
[tool.mypy]
disallow_any_explicit = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_defs = true
check_untyped_defs = true
no_implicit_optional = true
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
implicit_reexport = false
strict_equality = true
scripts_are_modules = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = 'feedparser'
ignore_missing_imports = true
[tool.isort]
atomic = true
balanced_wrapping = true
combine_as_imports = true
include_trailing_comma = true
length_sort = true
multi_line_output = 3
order_by_type = false
default_section = "THIRDPARTY"
sections = ["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]