Changed custom_lib

This commit is contained in:
2026-05-08 15:28:04 +09:00
parent 0ffb55dd99
commit 5f281ec40b
687 changed files with 337 additions and 11 deletions
+33
View File
@@ -0,0 +1,33 @@
[project]
name = "custom_lib"
version = "1.0.3"
description = "My Custom Python Library"
requires-python = ">=3.9"
# --- required ---
dependencies = []
# --- optional ---
[project.optional-dependencies]
image = [
"webcolors==1.13",
"pillow==9.4.0",
"opencv-contrib-python==4.5.2.52",
"numpy<2"
]
crawling = [
"requests==2.26.0",
"beautifulsoup4==4.11.2"
]
all = [
"webcolors==1.13",
"pillow==9.4.0",
"opencv-contrib-python==4.5.2.52",
"numpy<2",
"requests==2.26.0",
"beautifulsoup4==4.11.2"
]
# --- path ---
[tool.setuptools.packages.find]
include = ["custom_lib*"]