hyw-core 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: hyw-core
3
+ Version: 1.0.0
4
+ Summary: Core library for HYW - LLM pipeline, search abstraction and browser automation
5
+ Author-email: kumoSleeping <zjr2992@outlook.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/kumoSleeping/hyw-core
8
+ Project-URL: Repository, https://github.com/kumoSleeping/hyw-core
9
+ Keywords: llm,ai,search,browser,pipeline
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Requires-Python: <3.13,>=3.10
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: openai
19
+ Requires-Dist: httpx
20
+ Requires-Dist: trafilatura>=1.6.0
21
+ Requires-Dist: json-repair>=0.55.0
22
+ Requires-Dist: Pillow>=10.0.0
23
+ Requires-Dist: pyyaml
24
+ Requires-Dist: loguru
25
+ Provides-Extra: browser
26
+ Requires-Dist: DrissionPage>=4.1.1.2; extra == "browser"
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest; extra == "dev"
29
+ Requires-Dist: pytest-asyncio; extra == "dev"
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: hyw-core
3
+ Version: 1.0.0
4
+ Summary: Core library for HYW - LLM pipeline, search abstraction and browser automation
5
+ Author-email: kumoSleeping <zjr2992@outlook.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/kumoSleeping/hyw-core
8
+ Project-URL: Repository, https://github.com/kumoSleeping/hyw-core
9
+ Keywords: llm,ai,search,browser,pipeline
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Requires-Python: <3.13,>=3.10
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: openai
19
+ Requires-Dist: httpx
20
+ Requires-Dist: trafilatura>=1.6.0
21
+ Requires-Dist: json-repair>=0.55.0
22
+ Requires-Dist: Pillow>=10.0.0
23
+ Requires-Dist: pyyaml
24
+ Requires-Dist: loguru
25
+ Provides-Extra: browser
26
+ Requires-Dist: DrissionPage>=4.1.1.2; extra == "browser"
27
+ Provides-Extra: dev
28
+ Requires-Dist: pytest; extra == "dev"
29
+ Requires-Dist: pytest-asyncio; extra == "dev"
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ hyw_core.egg-info/PKG-INFO
3
+ hyw_core.egg-info/SOURCES.txt
4
+ hyw_core.egg-info/dependency_links.txt
5
+ hyw_core.egg-info/requires.txt
6
+ hyw_core.egg-info/top_level.txt
@@ -0,0 +1,14 @@
1
+ openai
2
+ httpx
3
+ trafilatura>=1.6.0
4
+ json-repair>=0.55.0
5
+ Pillow>=10.0.0
6
+ pyyaml
7
+ loguru
8
+
9
+ [browser]
10
+ DrissionPage>=4.1.1.2
11
+
12
+ [dev]
13
+ pytest
14
+ pytest-asyncio
@@ -0,0 +1,53 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "hyw-core"
7
+ version = "1.0.0"
8
+ description = "Core library for HYW - LLM pipeline, search abstraction and browser automation"
9
+ authors = [{name = "kumoSleeping", email = "zjr2992@outlook.com"}]
10
+ dependencies = [
11
+ "openai",
12
+ "httpx",
13
+ "trafilatura>=1.6.0",
14
+ "json-repair>=0.55.0",
15
+ "Pillow>=10.0.0",
16
+ "pyyaml",
17
+ "loguru",
18
+ ]
19
+ requires-python = ">=3.10,<3.13"
20
+ readme = "README.md"
21
+ license = {text = "MIT"}
22
+ keywords = ["llm", "ai", "search", "browser", "pipeline"]
23
+ classifiers = [
24
+ "Development Status :: 4 - Beta",
25
+ "Intended Audience :: Developers",
26
+ "License :: OSI Approved :: MIT License",
27
+ "Programming Language :: Python :: 3.10",
28
+ "Programming Language :: Python :: 3.11",
29
+ "Programming Language :: Python :: 3.12",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ browser = [
34
+ "DrissionPage>=4.1.1.2",
35
+ ]
36
+ dev = [
37
+ "pytest",
38
+ "pytest-asyncio",
39
+ ]
40
+
41
+ [project.urls]
42
+ Homepage = "https://github.com/kumoSleeping/hyw-core"
43
+ Repository = "https://github.com/kumoSleeping/hyw-core"
44
+
45
+ [tool.setuptools]
46
+ include-package-data = true
47
+
48
+ [tool.setuptools.packages.find]
49
+ where = ["."]
50
+ include = ["hyw_core*"]
51
+
52
+ [tool.setuptools.package-data]
53
+ "hyw_core.browser_control" = ["assets/**/*", "landing.html"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+