-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (78 loc) · 2.16 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
[build-system]
requires = ["hatchling>=1.26,<2"]
build-backend = "hatchling.build"
[project]
name = "otp-message-extractor"
dynamic = ["version"]
description = "Dependency-free OTP and verification-code extractor for Arabic and English message text"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "fencercensor" },
]
keywords = [
"otp",
"otp-extractor",
"sms-parser",
"verification-code",
"2fa",
"mfa",
"arabic",
"email-otp",
"alphanumeric-otp",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Communications :: Email",
"Topic :: Communications :: Telephony",
"Topic :: Security",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/fencercensor/otp-message-extractor-python"
Repository = "https://github.com/fencercensor/otp-message-extractor-python"
Issues = "https://github.com/fencercensor/otp-message-extractor-python/issues"
Changelog = "https://github.com/fencercensor/otp-message-extractor-python/blob/main/CHANGELOG.md"
"JavaScript package" = "https://www.npmjs.com/package/otp-message-extractor"
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"pytest>=8.3,<9",
"ruff>=0.12,<1",
"twine>=6,<7",
]
[tool.hatch.version]
path = "src/otp_message_extractor/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/otp_message_extractor"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/CHANGELOG.md",
"/CONTRIBUTING.md",
"/LICENSE",
"/README.md",
"/SECURITY.md",
"/pyproject.toml",
]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]