-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 2.22 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonclaw"
version = "0.6.6"
description = "OpenClaw reimagined in pure Python — autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Eric Wang", email = "wangchen2007915@gmail.com"},
]
keywords = ["llm", "agent", "ai", "autonomous", "memory", "rag", "skills", "telegram", "discord", "whatsapp", "chatbot", "framework"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"openai",
"anthropic",
"google-generativeai",
"python-telegram-bot[job-queue]>=20.0",
"discord.py>=2.3",
"pywa[fastapi]>=2.8",
"apscheduler>=3.10",
"pyyaml>=6.0",
"fastapi>=0.100",
"uvicorn[standard]>=0.20",
"httpx>=0.24",
"tavily-python",
"rank-bm25>=0.2",
"numpy>=1.24",
"scikit-learn>=1.3",
"beautifulsoup4",
"requests",
]
[project.scripts]
pythonclaw = "pythonclaw.main:main"
[project.urls]
Homepage = "https://github.com/ericwang915/PythonClaw"
Documentation = "https://github.com/ericwang915/PythonClaw#readme"
Repository = "https://github.com/ericwang915/PythonClaw"
Issues = "https://github.com/ericwang915/PythonClaw/issues"
[tool.setuptools.packages.find]
include = ["pythonclaw*"]
[tool.setuptools.package-data]
pythonclaw = [
"templates/**/*.py",
"templates/**/*.sh",
"templates/**/*.yaml",
"templates/**/*.md",
"web/static/**/*",
]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__", "*.pyc", "*.pyo"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]