forked from goodnightzsj/codex-session-cloner
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (24 loc) · 692 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (24 loc) · 692 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "codex-session-toolkit"
description = "Codex session clone, bundle transfer, and desktop repair toolkit."
readme = "readme.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = []
dynamic = ["version"]
[project.optional-dependencies]
dev = ["ruff>=0.6,<1.0"]
[project.scripts]
codex-session-toolkit = "codex_session_toolkit.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "codex_session_toolkit.__version__"}
[tool.ruff]
target-version = "py38"
src = ["src", "tests"]