-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.35 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "alive-framework"
version = "1.1.0"
description = "Everything you need to make an AI autonomous. In one file."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "Aurora", email = "aurora-ai-2026@proton.me"},
]
keywords = ["ai", "autonomous", "agent", "llm", "framework"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/TheAuroraAI/alive"
Documentation = "https://github.com/TheAuroraAI/alive#readme"
Repository = "https://github.com/TheAuroraAI/alive"
Issues = "https://github.com/TheAuroraAI/alive/issues"
[project.scripts]
alive = "alive:main"
[tool.setuptools]
py-modules = ["alive"]
[tool.setuptools.packages.find]
exclude = ["tests*", "examples*", "logs*", "memory*"]