MakiAi commited on
Commit
533f45c
1 Parent(s): 6e1b8f2

✨ feat: バージョン番号更新とCLIエントリポイント修正

Browse files

- バージョン番号を`0.1.1`に更新しました。
- `setup.py`の`entry_points`セクションで、CLIのエントリポイントを`pic_to_header.app:main`から`pic_to_header.cli:main`に変更しました。これにより、CLIが正しく動作するようになります。

Files changed (1) hide show
  1. setup.py +2 -2
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.0",
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.app:main",
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
  )