-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 1.77 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "merlin-ia"
version = "0.3.0"
description = "Assistente local-first para Linux com RAG, CLI, API local e Linux Agent."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "N1ghthill" }
]
keywords = [
"python",
"chatbot",
"rag",
"local-first",
"sentence-transformers",
"llm",
"chromadb",
"ollama",
"linux-automation",
"privacy-tools",
"offline-ai",
"developer-tools",
"local-api",
"linux-agent",
"security",
"cli"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"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 :: Build Tools",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/N1ghthill/merlin-ia"
Repository = "https://github.com/N1ghthill/merlin-ia"
Documentation = "https://github.com/N1ghthill/merlin-ia/tree/main/docs"
Issues = "https://github.com/N1ghthill/merlin-ia/issues"
[project.scripts]
merlin-ia = "merlin_cli:main"
merlin-api = "merlin_api:main"
merlin-index = "rag_indexer:main"
[tool.setuptools]
include-package-data = true
py-modules = ["merlin_cli", "merlin_api", "rag_indexer"]
[tool.setuptools.packages.find]
include = ["merlin*", "executor*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }