-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (82 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (82 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "notifier"
version = "0.0.0"
description = "Wikidot notifications"
authors = [{ name = "Ross Williams", email = "rossjrw@gmail.com" }]
license = { text = "MIT" }
requires-python = ">=3.13"
dependencies = [
"APScheduler>=3.7",
"requests>=2.26",
"tomlkit>=0.7.2",
"pycron>=3.0",
"feedparser>=6.0.11",
"emoji>=1.4.2",
"yagmail[all]>=0.14.256",
"SecretStorage>=3.3.1",
"pymysql>=1.0.3",
"boto3>=1.26.160",
"python-dateutil>=2.9",
"typing-extensions>=4.7.1",
"beautifulsoup4>=4.13.4",
"lxml>=5.4",
]
[dependency-groups]
dev = [
"black>=22.3",
"pytest>=8.4.1",
"isort>=5.9.2",
"pylint>=2.9.6",
"mypy==1.14",
"boto3-stubs[essential]>=1.28.2",
"types-beautifulsoup4>=4.12.0.5",
"types-requests>=2.31.0.1",
"types-emoji>=2.1.0.3",
"types-pymysql>=1.0.19.7",
"types-python-dateutil>=2.8.19.13",
"cffi>=1.17.1",
"pytest-mock>=3.14.1",
]
[tool.black]
line-length = 79
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.pylint.messages_control]
disable = [
"invalid-name",
"missing-module-docstring",
"redefined-outer-name",
"line-too-long",
"consider-using-f-string",
"broad-except",
]
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "yagmail.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "apscheduler.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "boto3.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "feedparser.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pycron.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tomlkit.*"
implicit_reexport = true
[tool.pytest.ini_options]
markers = [
"needs_database: Tests that require the sample database"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"