-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 925 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 925 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "xarc-cli"
version = "0.1.0"
description = "用于在本地浏览、检索和导出 X(原 Twitter)归档的命令行工具,无需上传数据"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "XArc contributors" },
]
keywords = ["archive", "sqlite", "fts5", "twitter", "x"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database :: Front-Ends",
]
dependencies = []
[project.scripts]
xarc = "xarc_cli.cli:main"
askclaw-x-archive = "xarc_cli.cli:main"
[tool.setuptools]
packages = ["xarc_cli", "askclaw_x_archive", "x_archive_index"]