-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 987 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 987 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
#!/usr/bin/env python3
"""Setup script for Claude Pace Maker."""
from setuptools import setup, find_packages
setup(
name="claude-pace-maker",
version="1.13.0",
description="Intelligent credit consumption throttling for Claude Code",
author="Lightspeed DMS",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.9",
install_requires=[
"requests>=2.31.0",
"claude-agent-sdk>=0.1.0",
],
entry_points={
"console_scripts": [
"claude-pace-maker-install=pacemaker.installer:main",
],
},
# Include install.sh and hook scripts as data files
data_files=[
("share/claude-pace-maker", ["install.sh"]),
("share/claude-pace-maker/hooks", [
"src/hooks/post-tool-use.sh",
"src/hooks/stop.sh",
"src/hooks/user-prompt-submit.sh",
"src/hooks/session-start.sh",
]),
],
include_package_data=True,
)