-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.44 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "venai"
version = "1.29.2"
description = "VenusAI is a secure and extensible Agent framework built for modern AI applications."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp",
"rich",
"click",
"tinydb",
"fasta2a",
"fastapi",
"logfire",
"uvicorn",
"pydantic",
"aiocache",
"aiofiles",
"async-lru",
"cachetools",
"pydantic-ai",
"python-dotenv",
"typing-extensions",
"e2b-code-interpreter",
]
authors = [
{name = "Mert Sirakaya", email = "contact@tomris.dev"}
]
maintainers = [
{name = "Mert Sirakaya", email = "contact@tomris.dev"}
]
license = {text = "MIT"}
keywords = ["safety", "ai", "agent", "llm", "agentic ai", "pydantic", "pydantic-ai", "self-healing", "sandbox", "ai agent"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Documentation = "https://venai.tech/docs"
Source = "https://github.com/VenusAgent/VenusAI"
Tracker = "https://github.com/VenusAgent/VenusAI/issues"
[project.scripts]
venus = "venus.__main__:main"
venai = "venus.__main__:main"
[tool.hatch.build]
packages = ["venus"]
include-package-data = true