-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (62 loc) · 1.88 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "athena-cli"
version = "8.2.1"
description = "Athena Bionic OS — Build Your Own AI Agent in 5 Minutes"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Winston Koh", email = "winstonkoh87@gmail.com" }
]
keywords = ["ai", "llm", "rag", "memory", "personal-assistant", "gemini", "claude"]
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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
# Core dependencies (minimal for basic usage)
dependencies = [
"python-dotenv>=1.0.0",
"requests>=2.31.0",
]
[project.scripts]
athena = "athena.__main__:main"
[project.optional-dependencies]
# Full functionality (vector search + reranking)
full = [
"google-generativeai>=0.3.0",
"supabase>=2.0.0",
"sentence-transformers>=2.2.0",
"torch>=2.0.0",
"pydantic>=2.0.0",
]
# Development tools
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/winstonkoh87/Athena-Public"
Documentation = "https://github.com/winstonkoh87/Athena-Public/blob/main/docs/GETTING_STARTED.md"
Repository = "https://github.com/winstonkoh87/Athena-Public"
Issues = "https://github.com/winstonkoh87/Athena-Public/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/athena"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312", "py313", "py314"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]