-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (111 loc) · 3.11 KB
/
pyproject.toml
File metadata and controls
123 lines (111 loc) · 3.11 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiforge-engine"
version = "0.0.19"
description = "Intelligent Intent Adaptive Execution Engine - 智能意图自适应执行引擎"
readme = "README_EN.md"
license = { text = "Apache 2.0" }
requires-python = ">=3.10"
authors = [{ name = "iniwap", email = "iniwaper@gmail.com" }]
maintainers = [{ name = "iniwap", email = "iniwaper@gmail.com" }]
keywords = [
"ai",
"automation",
"intent",
"execution",
"engine",
"llm",
"natural-language",
"code-generation",
"agent-zero",
"aipyapp",
"crewai",
"agent",
"ai-agents",
"manus",
"ai-tools",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software 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",
"Topic :: Software Development :: Code Generators",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Operating System :: OS Independent",
"Environment :: Console",
"Environment :: Web Environment",
]
dependencies = [
"requests>=2.25.0",
"beautifulsoup4>=4.9.0",
"click>=8.0.0",
"tomlkit>=0.10.0",
"peewee>=3.14.0",
"pydantic>=2.0.0",
"typing-extensions>=4.0.0",
"rich>=12.0.0",
"setuptools",
"python-dateutil>=2.8.0",
]
[project.optional-dependencies]
dev = ["python-dotenv>=1.0.0", "pytest>=7.0.0"]
transformers = ["sentence-transformers>=2.0.0"]
web = ["fastapi>=0.100.0", "uvicorn>=0.20.0", "jinja2>=3.1.0", "psutil>=5.8.0"]
gui = [
"pywebview>=4.0.0",
"pystray>=0.19.0",
"pillow>=8.0.0",
"pywin32>=306;platform_system=='Windows'",
]
deploy = ["docker>=6.0.0", "pyyaml>=6.0.0"]
all = [
"sentence-transformers>=2.0.0",
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"jinja2>=3.1.0",
"pywebview>=4.0.0",
"docker>=6.0.0",
"pyyaml>=6.0.0",
"psutil>=5.8.0",
]
[project.urls]
Homepage = "https://github.com/iniwap/AIForge"
Documentation = "https://iniwap.github.io/AIForge"
Repository = "https://github.com/iniwap/AIForge"
"Bug Tracker" = "https://github.com/iniwap/AIForge/issues"
Changelog = "https://github.com/iniwap/AIForge/releases"
"Source Code" = "https://github.com/iniwap/AIForge"
Discord = "https://discord.gg/Vp35uSBsrw"
Twitter = "https://twitter.com/iafun_tipixel"
[project.scripts]
aiforge = "aiforge.cli:main"
aiforge-deploy = "aiforge_deploy.cli.deploy_cli:main"
[tool.hatch.build.targets.wheel]
packages = [
"src/aiforge",
"src/aiforge_web",
"src/aiforge_gui",
"src/aiforge_deploy",
]
[tool.hatch.build.targets.sdist]
include = [
"/src/aiforge",
"/src/aiforge_web",
"/src/aiforge_gui",
"/src/aiforge_deploy",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]
[dependency-groups]
dev = ["python-dotenv>=1.1.1"]
[tool.pytest.ini_options]
pythonpath = ["src"]