-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
92 lines (82 loc) · 1.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = [
"hatchling",
"editables"]
build-backend = "hatchling.build"
[project]
name = "trigent"
dynamic = ["version"]
description = "A Rich Issue MCP for GitHub Triaging at Scale"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "QuantStack" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"fastmcp>=0.4.0",
"pydantic>=2.8.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"requests>=2.28.0",
"ipython>=9.5.0",
"ipdb>=0.13.13",
"toml>=0.10.0",
"scikit-learn>=1.7.2",
"diskcache>=5.6.3",
"tinydb>=4.8.2",
"tinyrecord>=0.2.0",
"betterjsonstorage>=1.3.2",
"scipy>=1.16.1",
"hdbscan>=0.8.40",
"matplotlib>=3.5.0",
"couchdb>=1.2",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.0",
"black>=24.0.0",
"mypy>=1.11.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.hatch.version]
path = "trigent/__init__.py"
[tool.ruff]
target-version = "py311"
line-length = 88
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
]
[tool.ruff.isort]
known-first-party = ["trigent.pull", "trigent.enrich", "trigent.mcp_server", "trigent.cli", "trigent.visualize"]
[tool.hatch.build.targets.wheel]
packages = ["trigent"]
[project.scripts]
trigent = "trigent.cli:main"
[tool.black]
target-version = ["py311"]
line-length = 88
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true