-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (37 loc) · 1016 Bytes
/
setup.py
File metadata and controls
45 lines (37 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name="mmclaw",
version="0.0.49",
author="Jun Hu",
author_email="hujunxianligong@gmail.com",
description="⚡ MMClaw: Ultra-Lightweight, Pure Python Multimodal Agent.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/CrawlScript/MMClaw",
packages=find_packages(),
include_package_data=True,
package_data={
"mmclaw": ["skills/**/*", "bridge.js"],
},
entry_points={
"console_scripts": [
"mmclaw=mmclaw.main:main",
],
},
install_requires=[
"requests",
"openai",
"pyTelegramBotAPI",
"Pillow",
"reportlab>=4.0.0",
"pypdf>=4.0.0",
"qq-botpy==1.2.1",
],
extras_require={
"all": [
"lark-oapi == 1.5.3",
"pdfplumber>=0.11.0",
],
},
python_requires=">=3.8",
)