mirror of
https://fastgit.cc/github.com/HKUDS/CLI-Anything
synced 2026-04-20 21:00:28 +08:00
- Remove duplicate cli-anything-plugin/.claude-plugin/marketplace.json - Expand VALID_FILTERS to match all 23 filters advertised by filter list - Add export_options parameter to krita_backend.export_file() - Extract _locked_save_json to shared utils/io.py utility - Replace deprecated datetime.utcnow() with datetime.now(timezone.utc) - Add encoding="utf-8" to setup.py open() call - Align setup.py with GIMP harness (url, classifiers, extras_require, etc.) - Add Krita brand purple accent color to repl_skin.py Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
from setuptools import setup, find_namespace_packages
|
|
|
|
with open("cli_anything/krita/README.md", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="cli-anything-krita",
|
|
version="1.0.0",
|
|
description="CLI harness for Krita digital painting application",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="cli-anything contributors",
|
|
url="https://github.com/HKUDS/CLI-Anything",
|
|
license="MIT",
|
|
packages=find_namespace_packages(include=["cli_anything.*"]),
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Multimedia :: Graphics :: Editors",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
],
|
|
python_requires=">=3.10",
|
|
install_requires=[
|
|
"click>=8.0.0",
|
|
"prompt-toolkit>=3.0.0",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.0.0",
|
|
"pytest-cov>=4.0.0",
|
|
],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"cli-anything-krita=cli_anything.krita.krita_cli:main",
|
|
],
|
|
},
|
|
package_data={
|
|
"cli_anything.krita": ["skills/*.md"],
|
|
},
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|