-
Notifications
You must be signed in to change notification settings - Fork 254
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 813 Bytes
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
[project]
name = "twarc"
version = "2.14.1"
description = "Archive tweets from the command line"
license = "MIT"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"click>=7,<9",
"click-config-file>=0.6",
"click-plugins>=1",
"humanize>=3.9",
"python-dateutil>=2.8",
"requests_oauthlib>=1.3",
"tqdm>=4.62",
"twarc-csv>=0.7.2",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"pytest>=8.4.2",
"pytest-black>=0.6.0",
"python-dotenv>=1.2.1",
"pytz>=2025.2",
"toml>=0.10.2",
]
[project.scripts]
twarc = "twarc.command:main"
twarc2 = "twarc.command2:twarc2"
[tool.pytest.ini_options]
addopts = "--verbose --black"
[tool.uv.workspace]
members = [
"tmp/twarc",
]
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"