-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (95 loc) · 2.77 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (95 loc) · 2.77 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "symeraseme"
version = "0.10.4"
description = "Automated data broker removal tool — close your accounts, erase your data."
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Daniel Justus", email = "daniel@ohmyopen.com" }]
readme = "README.md"
keywords = ["privacy", "gdpr", "ccpa", "data-broker", "opt-out"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security :: Cryptography",
]
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"keyring>=24.0.0",
"cryptography>=42.0.0",
"jinja2>=3.1.0",
"jsonschema>=4.20.0",
"structlog>=24.0.0",
"email-validator>=2.1.0",
"aiosmtplib>=3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.0",
"mypy>=1.9.0",
"pre-commit>=3.7.0",
"keyrings.alt>=5.0.0",
]
web = [
"playwright>=1.44.0",
]
triage = [
"anthropic>=0.34.0",
]
openai = [
"openai>=1.30.0",
]
ollama = [
]
[project.scripts]
symeraseme = "symeraseme.cli:app"
[project.urls]
Homepage = "https://github.com/danieljustus/symaira-eraseme"
Repository = "https://github.com/danieljustus/symaira-eraseme"
Issues = "https://github.com/danieljustus/symaira-eraseme/issues"
Changelog = "https://github.com/danieljustus/symaira-eraseme/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/symeraseme"]
# Ship the broker registry data (brokers/, laws/, schemas/, templates/) inside
# the installed package so pip/Homebrew installs work without a source checkout
# (issue #615). The repo-root `registry/` tree is force-included into the
# package as `symeraseme/registry_data/`; the sdist carries it automatically
# (hatchling's default sdist includes the whole project tree).
[tool.hatch.build.targets.wheel.force-include]
"registry" = "src/symeraseme/registry_data"
[tool.hatch.metadata]
allow-direct-references = true
[tool.ruff]
target-version = "py311"
line-length = 100
exclude = [".git", "__pycache__", ".venv", "dist", "build"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "N", "UP", "B", "SIM"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.11"
strict = false
ignore_missing_imports = true
exclude = ["tests/", ".venv/"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["src"]
[dependency-groups]
dev = [
"pytest-xdist>=3.6.0",
]