-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 672 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="claude_code_token_optimizer",
version="0.1.0",
packages=find_packages(),
install_requires=[
"anthropic",
],
entry_points={
'console_scripts': [
'optimize-claude-code=claude_code_token_optimizer.cli:main',
],
},
author="Samuel Orth & Manus AI",
author_email="samuel.orth@example.com",
description="A skill to optimize Claude API token usage for code generation.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/Theesamkos/claude-code-token-optimizer-skill",
)