-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.37 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mandali"
version = "0.1.0"
description = "Mandali (मंडली) — Autonomous multi-agent collaborative development system using GitHub Copilot SDK"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{ name = "nmallick1" },
]
keywords = [
"multi-agent",
"ai-agents",
"github-copilot",
"copilot-sdk",
"code-review",
"collaborative-ai",
"autonomous-agents",
"devtools",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = [
"github-copilot-sdk>=0.1.0",
"pyyaml>=6.0",
"rich>=13.0",
]
[project.urls]
Homepage = "https://github.com/nmallick1/mandali"
Repository = "https://github.com/nmallick1/mandali"
Issues = "https://github.com/nmallick1/mandali/issues"
[project.scripts]
mandali = "mandali:main"
[tool.setuptools]
py-modules = ["mandali"]
[tool.setuptools.package-data]
"*" = ["personas/*.md", "config.yaml"]