File size: 1,089 Bytes
d5341cc
 
 
 
 
 
12c5d69
d5341cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8f5b53f
d5341cc
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "code-tribunal"
version = "0.2.0"
description = "AI courtroom that exposes bad freelance code through multi-agent forensic investigation"
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E.*"]
requires-python = ">=3.11"
authors = [
    {name = "Amine Yagoub"},
]
keywords = ["ai", "code-review", "forensic", "multi-agent", "glm"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
]
dependencies = [
    "crewai[litellm]",
    "gritql>=0.2.0",
    "gradio>=5.0.0",
    "click>=8.0.0",
    "python-dotenv>=1.0.0",
    "markdown-pdf>=1.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=8.0.0",
    "ruff>=0.9.0",
]

[project.urls]
Repository = "https://github.com/amineyagoub/CodeTribunal"

[project.scripts]
code-tribunal = "code_tribunal.cli:main"