fix: resolve CI linting issues - remove unused imports and f-strings
This commit is contained in:
26
app/setup.py
Normal file
26
app/setup.py
Normal file
@@ -0,0 +1,26 @@
|
||||
from setuptools import setup
|
||||
|
||||
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=["cli_memory", "cli_memory.commands"],
|
||||
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"],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user