-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.75 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 = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nova-orchestrator"
version = "1.3.0"
description = "NOVA — Autonomous AI Orchestration Framework: declarative pipelines + event-driven autonomy"
readme = "README.md"
license = "MIT"
authors = [{ name = "noivan0", email = "noivan0@users.noreply.github.com" }]
requires-python = ">=3.10"
keywords = ["ai", "orchestration", "harness", "llm", "automation", "autonomous", "agent"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pyyaml>=6.0",
]
[project.optional-dependencies]
openai = ["openai>=2.0"]
anthropic = ["anthropic>=0.97"]
ollama = ["ollama>=0.6"]
redis = ["redis>=5.0"]
all = ["openai>=2.0", "anthropic>=0.97", "ollama>=0.6", "redis>=5.0"]
dev = [
"pytest>=7.0",
"pytest-cov",
"openai>=2.0",
"anthropic>=0.97",
"ollama>=0.6",
"black",
"ruff",
"mypy",
]
[project.scripts]
nova = "nova.cli.main:main"
[project.urls]
Homepage = "https://github.com/noivan0/NOVA"
Repository = "https://github.com/noivan0/NOVA"
Issues = "https://github.com/noivan0/NOVA/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["nova*"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
disable_error_code = ["import-untyped"]