-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (45 loc) · 1.08 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
[project]
name = "acumbamail"
version = "0.4.0"
description = "Acumamail SDK client for Python"
authors = [
{name = "Daniel Alfocea (cr0hn)", email = "daniel@danielalfocea.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1,<0.29.0",
"playwright>=1.40.0",
"pyyaml>=6.0.1",
"typer>=0.15.0",
"undetected-chromedriver>=3.5.5",
]
[project.scripts]
acumbamail = "acumbamail.cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
# Working notes and editor/agent config: no business being in a published artifact.
exclude = [
"BUGS-*.md",
".claude",
".vscode/**",
".worktrees",
]
[dependency-groups]
dev = [
"jsonschema>=4.26.0",
"openapi-spec-validator>=0.8.5",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"pytest-httpx>=0.36.2",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-m 'not contract'"
markers = [
"contract: tests de contrato contra la API real (requieren red)",
]