-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 2.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "proactiveagent"
version = "0.1.1"
description = "A Python framework to transform your AI from reactive to proactive with intelligent timing and context-aware wake-up patterns - Your agent decides when to speak!"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Leonardo Mariga", email = "leomariga@gmail.com"},
]
maintainers = [
{name = "Leonardo Mariga", email = "leomariga@gmail.com"},
]
keywords = ["ai", "agent", "proactive", "active", "thread", "chatbot", "automation", "autonomous", "openai", "llm", "gpt", "conversational", "intelligent", "timing", "scheduling", "decision-making", "context-aware"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Conferencing",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
dependencies = [
"openai>=1.108.0",
]
[project.urls]
Homepage = "https://github.com/leomariga/ProactiveAgent"
Repository = "https://github.com/leomariga/ProactiveAgent"
Documentation = "https://leomariga.github.io/ProactiveAgent/"
Issues = "https://github.com/leomariga/ProactiveAgent/issues"
[tool.hatch.build.targets.wheel]
packages = ["proactiveagent"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[dependency-groups]
dev = [
"mkdocs-material>=9.6.21",
"mkdocstrings[python]>=0.30.1",
"pymdown-extensions>=10.0",
"mkdocs-minify-plugin>=0.8.0",
]