-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
61 lines (51 loc) · 1.25 KB
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
60
61
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "sr.discord_bot"
version = "2026.0.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"python-dotenv==1.0.1",
"discord.py==2.6.4",
"feedparser==6.0.11",
"beautifulsoup4==4.12.3",
"pytest==8.4.1",
"pyyaml==6.0.2",
"jsonschema==4.25.1",
"sentry-sdk==2.42.1",
"backports.strenum==1.3.1 ; python_version < '3.11'",
]
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"]