-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cc-statistics"
version = "0.12.19"
description = "Claude Code 会话统计工具 — 分析 AI Coding 工程指标"
requires-python = ">=3.10"
dependencies = []
readme = "README.md"
license = "MIT"
authors = [{name = "androidZzT"}]
keywords = ["claude-code", "statistics", "ai-coding", "cli"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/androidZzT/cc-statistics"
Repository = "https://github.com/androidZzT/cc-statistics"
[tool.setuptools.packages.find]
include = ["cc_stats*", "cc_stats_app*", "cc_stats_web*"]
[tool.setuptools.package-data]
cc_stats_app = ["swift/**/*.swift", "swift/Info.plist", "swift/CCStats.app/**/*"]
cc_stats_web = ["web/**/*"]
[project.scripts]
cc-stats = "cc_stats.cli:main"
cc-stats-app = "cc_stats_app.__main__:main"
cc-stats-web = "cc_stats_web.__main__:main"
cc-stats-hooks = "cc_stats.hooks:main"