-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (71 loc) · 1.77 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "keepa-cli"
version = "0.1.0"
description = "Agent-first Keepa API CLI for product research, safe automation, and MCP-native workflows."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"prompt_toolkit>=3.0,<4",
]
license = {file = "LICENSE"}
authors = [{name = "cuNuo"}]
keywords = [
"keepa",
"keepa-api",
"amazon",
"amazon-product-research",
"cli",
"agent",
"mcp",
"stdio",
"fixture",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://cunuo.github.io/Keepa-cli/"
Repository = "https://github.com/cuNuo/Keepa-cli"
Issues = "https://github.com/cuNuo/Keepa-cli/issues"
Documentation = "https://cunuo.github.io/Keepa-cli/"
Architecture = "https://zread.ai/cuNuo/Keepa-cli"
Changelog = "https://github.com/cuNuo/Keepa-cli/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = []
mcp-sdk = [
"mcp>=1,<2",
]
tui = [
"prompt_toolkit>=3.0,<4",
]
[project.scripts]
keepa-cli = "keepa_cli.cli:main"
kc = "keepa_cli.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["keepa_cli*"]
[tool.setuptools.package-data]
keepa_cli = ["fixtures/*.json"]
[tool.coverage.run]
source = ["keepa_cli"]
branch = true
omit = [
"keepa_cli/ui/*",
"keepa_cli/cli.py",
"keepa_cli/cli_builders/*",
"keepa_cli/__main__.py",
]
[tool.coverage.report]
fail_under = 100
show_missing = true