Spaces:
Sleeping
Sleeping
✨ feat: バージョン番号更新とCLIエントリポイント修正
Browse files- バージョン番号を`0.1.1`に更新しました。
- `setup.py`の`entry_points`セクションで、CLIのエントリポイントを`pic_to_header.app:main`から`pic_to_header.cli:main`に変更しました。これにより、CLIが正しく動作するようになります。
setup.py
CHANGED
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
5 |
|
6 |
setup(
|
7 |
name="pic-to-header",
|
8 |
-
version="0.1.
|
9 |
author="Sunwood-ai-labs",
|
10 |
author_email="your.email@example.com",
|
11 |
description="A Python application to generate header images using mask and input images",
|
@@ -32,7 +32,7 @@ setup(
|
|
32 |
],
|
33 |
entry_points={
|
34 |
"console_scripts": [
|
35 |
-
"pic-to-header=pic_to_header.
|
36 |
],
|
37 |
},
|
38 |
)
|
|
|
5 |
|
6 |
setup(
|
7 |
name="pic-to-header",
|
8 |
+
version="0.1.1",
|
9 |
author="Sunwood-ai-labs",
|
10 |
author_email="your.email@example.com",
|
11 |
description="A Python application to generate header images using mask and input images",
|
|
|
32 |
],
|
33 |
entry_points={
|
34 |
"console_scripts": [
|
35 |
+
"pic-to-header=pic_to_header.cli:main",
|
36 |
],
|
37 |
},
|
38 |
)
|