mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 11:40:07 +00:00
29 lines
768 B
Python
29 lines
768 B
Python
# run_all_wfgy_modules.py
|
|
# Individual module smoke tests with human-readable comments
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="wfgy_sdk",
|
|
version="1.0.0",
|
|
description="WFGY 1.0 • Self-Healing LLM Framework SDK",
|
|
author="PSBigBig",
|
|
author_email="hello@onestardao.com",
|
|
url="https://github.com/onestardao/WFGY",
|
|
packages=find_packages(include=["wfgy_sdk", "wfgy_sdk.*"]),
|
|
python_requires=">=3.10",
|
|
setup_requires=["numpy<2.0"],
|
|
install_requires=[
|
|
"numpy<2.0",
|
|
"torch==2.2.2",
|
|
"transformers==4.41.2",
|
|
"tabulate",
|
|
"matplotlib",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"wfgy=wfgy_sdk.cli:main",
|
|
]
|
|
},
|
|
)
|
|
|
|
|