-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.2 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
[project]
name = "umbra"
version = "2.4"
authors = [
{ name = "Eldon Stegall", email="eldon@archive.org" },
{ name="Noah Levitt", email="nlevitt@archive.org" },
]
maintainers = [
{ name="Barbara Miller", email="barbara@archive.org" },
{ name="Misty De Méo", email="misty@archive.org" },
]
description = "Queue-controlled browser automation tool for improving web crawl quality"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: System :: Archiving",
]
dependencies = [
"brozzler>=1.6.10",
"kombu>=5.3.3, <6",
"PyYAML"
]
[project.optional-dependencies]
sentry = [
"sentry-sdk>=2.34.1"
]
[project.scripts]
browse-url = "umbra.cli:browse_url"
drain-queue = "umbra.cli:drain_queue"
queue-json = "umbra.cli:queue_json"
queue-url = "umbra.cli:queue_url"
umbra = "umbra.cli:run_umbra"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"ruff>=0.12.7",
]
[project.urls]
Homepage = "https://github.com/internetarchive/umbra"
Repository = "https://github.com/internetarchive/umbra"