-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 802 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 802 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kepler-cli"
dynamic = ["version"]
description = "CLI tool to generate professional monthly reports from Git activity using AI."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Froggap" }
]
dependencies = [
"google-genai>=1.61.0",
"keyring>=25.0.0",
"prompt-toolkit>=3.0.0",
"python-docx>=1.1.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"typer>=0.12.0",
]
[project.scripts]
kepler = "cli.entrypoint:main"
[tool.setuptools.packages.find]
include = ["cli*", "config*", "prompts*", "service*", "utils*"]
[tool.setuptools.package-data]
prompts = ["*.md"]
[tool.setuptools.dynamic]
version = { attr = "cli.app_info.VERSION" }