-
-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.74 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "socid-extractor"
dynamic = ["version"]
description = "Extract accounts' identifiers from personal pages on various platforms"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "Soxoj", email = "soxoj@protonmail.com"},
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
]
dependencies = [
"requests>=2.24.0",
"python-dateutil>=2.8.1",
"beautifulsoup4~=4.14.3",
]
[project.urls]
Homepage = "https://github.com/soxoj/socid-extractor"
[project.scripts]
socid_extractor = "socid_extractor.cli:run"
[tool.setuptools.dynamic]
version = {attr = "socid_extractor.__version__"}
[tool.setuptools.packages.find]
include = ["socid_extractor*"]
[tool.setuptools.package-data]
socid_extractor = ["py.typed"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = [
"requests.*",
"dateutil.*",
"bs4.*",
]
ignore_missing_imports = true
[tool.flake8]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"github_failed: requests from GitHub Actions CI servers are blocked",
"rate_limited: anti-bot / captcha / rate limiting from the site",
"requires_cookies: cookies are required to get content",
]