-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (94 loc) · 2.56 KB
/
pyproject.toml
File metadata and controls
108 lines (94 loc) · 2.56 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "arkaine"
version = "0.0.24"
description = "A batteries-included framework for DIY AI agents"
readme = "README.md"
authors = [{name = "Keith Chester", email = "keith@hlfshell.ai"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
# Core LLM dependencies
"anthropic==0.49.0",
"groq==0.18.0",
"openai==1.68.0",
"google-generativeai==0.8.4",
"ollama==0.4.7",
# Web/API dependencies
"fastapi==0.115.8",
"uvicorn==0.34.0",
"websockets==14.1",
"Requests==2.32.3",
"tldextract==5.1.3",
# Code execution
"docker==7.1.0",
# Data processing
"numpy==2.2.2",
"scikit_learn==1.6.1",
"beautifulsoup4==4.13.1",
"markdownify==0.13.1",
"pydantic==2.10.6",
"PyJWT==2.10.1",
# Utilities
"click==8.1.8",
"feedparser==6.0.11",
"parsedatetime==2.6",
"pytz==2024.2",
"typing_extensions==4.12.2",
"pymupdf4llm==0.0.17",
"wikipedia==1.4.0",
"googlemaps==4.10.0",
"setuptools==75.8.0",
]
[project.scripts]
spellbook = "arkaine.spellbook.main:main"
[tool.black]
line-length = 80
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
asyncio_default_fixture_loop_scope = "function"
[project.urls]
Homepage = "https://github.com/hlfshell/arkaine"
Documentation = "https://arkaine.readthedocs.io/"
Repository = "https://github.com/hlfshell/arkaine.git"
[tool.setuptools]
include-package-data = true
# This section replaces your MANIFEST.in
[tool.setuptools.package-data]
"arkaine" = [
"backends/prompts/**/*.prompt",
"composer/static/**/*",
"chat/prompts/*.prompt",
"spellbook/static/**/*.js",
"spellbook/static/**/*.css",
"spellbook/static/**/*.html",
"spellbook/static/components/**/*.js",
"wrappers/prompts/**/*",
"toolbox/code_envs/extras/python_env/**/*.py",
"toolbox/prompts/*.prompt",
"toolbox/research/prompts/*.prompt",
]
# Include non-package files
[tool.setuptools.data-files]
"." = ["LICENSE", "README.md"]