-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (61 loc) · 1.6 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
[project]
name = "ncmec-cybertip"
version = "0.1.1"
description = "A fully typed async client for the NCMEC CyberTipline Reporting API"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Nachtalb", email = "na@nachtalb.io" }
]
requires-python = ">=3.13"
keywords = ["ncmec", "cybertipline", "csam", "async", "httpx", "reporting"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.28.1",
"pydantic-xml>=2.21.0",
]
[project.urls]
Homepage = "https://github.com/Nachtalb/ncmec-cybertip"
Repository = "https://github.com/Nachtalb/ncmec-cybertip"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"pytest-cov>=7.1.0",
"respx>=0.23.1",
"ruff>=0.15.22",
"ty>=0.0.60",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: live tests against the NCMEC test environment (require NCMEC_TEST_USER/NCMEC_TEST_PASS)",
]
addopts = "-ra"
[tool.coverage.run]
source = ["ncmec_cybertip"]
branch = true
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
"raise NotImplementedError",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "N", "W", "C4", "PT", "RUF"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]