mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
- Added 175 new high-quality skills across all categories - 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other - Updated all language READMEs and SKILL.md - Weekly update by MyClaw.ai
25 lines
674 B
Python
25 lines
674 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="freeride",
|
|
version="1.0.0",
|
|
description="Free AI for OpenClaw - Automatic free model management via OpenRouter",
|
|
author="Shaishav Pidadi",
|
|
url="https://github.com/Shaivpidadi/FreeRide",
|
|
py_modules=["main", "watcher"],
|
|
install_requires=[
|
|
"requests>=2.31.0",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"freeride=main:main",
|
|
"freeride-watcher=watcher:main",
|
|
],
|
|
},
|
|
python_requires=">=3.8",
|
|
license="MIT",
|
|
classifiers=[
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
],
|
|
) |