-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 1008 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 1008 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>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "codex-usage-profiler"
version = "0.1.0"
description = "Local Codex session usage, rate-card cost, and review-candidate profiler."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Alex Southwell" }]
dependencies = []
[project.scripts]
codex-usage-profiler = "codex_usage_profiler.cli:main"
cup = "codex_usage_profiler.cli:main"
codex-usage-dashboard = "codex_usage_profiler.dashboard:main"
cup-dashboard = "codex_usage_profiler.dashboard:main"
codex-usage-collector = "codex_usage_profiler.collector:main"
cup-collector = "codex_usage_profiler.collector:main"
codex-lesson-miner = "codex_usage_profiler.learning:main"
clm = "codex_usage_profiler.learning:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
codex_usage_profiler = ["dashboard_static/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]