Files
cli-command-memory/.setup.py
7000pctAUTO 7b9d78fa1c
Some checks failed
CI / test (push) Has been cancelled
Initial upload with CI/CD workflow
2026-01-31 08:24:32 +00:00

27 lines
666 B
Python

from setuptools import setup, find_packages
setup(
name="cli-command-memory",
version="1.0.0",
description="CLI tool that records developer terminal workflows with smart autocomplete",
author="Developer",
author_email="dev@example.com",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"click>=8.1.7",
"rich>=13.7.0",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
],
entry_points={
"console_scripts": [
"cli-memory=cli_memory.cli:main",
],
},
include_package_data=True,
package_data={
"cli_memory": ["*.yaml", "*.yml"],
},
)