Skip to content

Commit 76137b6

Browse files
committed
Released
1 parent 251d2df commit 76137b6

19 files changed

+695
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.venv
2+
build

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Image To Webp
2+
3+
# SETUP
4+
5+
## setup - 1
6+
7+
``` batch
8+
uv venv
9+
uv pip install ./dist/image_to_webp-1.0.0-py3-none-any.whl
10+
```
11+
12+
## setup - 2
13+
``` batch
14+
pip install -U -r requirements.txt
15+
```
16+
17+
# RUN
18+
19+
## run - 1 (with uv)
20+
21+
```batch
22+
uv run main.py
23+
```
24+
25+
## run - 2 (python)
26+
27+
``` batch
28+
python.exe main.py
29+
```
30+
31+
## run - 3 (exe)
32+
33+
> click to run.exe or
34+
```batch
35+
call run.exe
36+
```
2.95 KB
Binary file not shown.

dist/image_to_webp-1.0.0.tar.gz

2.6 KB
Binary file not shown.

dist/main.exe.lnk

808 Bytes
Binary file not shown.

image_to_webp.egg-info/PKG-INFO

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Metadata-Version: 2.2
2+
Name: image_to_webp
3+
Version: 1.0.0
4+
Summary: Image To Webp, çalıştığı klasordeki tüm resimleri webp formatına dönüştürmenizi sağlayan bir Python projesidir.
5+
Requires-Python: >=3.13
6+
Description-Content-Type: text/markdown
7+
Requires-Dist: pillow>=11.1.0
8+
Requires-Dist: roboflow>=1.1.53
9+
10+
# Image To Webp

image_to_webp.egg-info/SOURCES.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
README.md
2+
main.py
3+
pyproject.toml
4+
image_to_webp.egg-info/PKG-INFO
5+
image_to_webp.egg-info/SOURCES.txt
6+
image_to_webp.egg-info/dependency_links.txt
7+
image_to_webp.egg-info/requires.txt
8+
image_to_webp.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pillow>=11.1.0
2+
roboflow>=1.1.53

0 commit comments

Comments
 (0)