-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.75 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
[project]
name = "praisonai-tools"
version = "0.2.25"
description = "Extended tools for PraisonAI Agents"
authors = [
{name = "Mervin Praison"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["ai", "agents", "tools", "praisonai", "custom-tools", "plugin"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"praisonaiagents>=0.0.1",
]
[project.scripts]
praisonai-tools = "praisonai_tools.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
wordpress = [
"praisonaiwp[ai]>=0.1.0",
]
marketplace = [
"httpx>=0.24.0",
]
pinchwork = [
"httpx>=0.24.0",
]
agentid = [
"httpx>=0.24.0",
]
joy-trust = [
"httpx>=0.24.0",
]
agentfolio = [
"httpx>=0.24.0",
]
n8n = [
"httpx>=0.27.0",
]
langextract = [
"langextract>=0.1.0",
]
video-motion = [
"playwright>=1.40",
"imageio-ffmpeg>=0.5",
]
[project.urls]
Homepage = "https://docs.praison.ai"
Repository = "https://github.com/MervinPraison/PraisonAI-Tools"
Documentation = "https://docs.praison.ai/tools"
Issues = "https://github.com/MervinPraison/PraisonAI-Tools/issues"
[build-system]
requires = ["hatchling>=1.0.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["praisonai_tools"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"