-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (41 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
51 lines (41 loc) · 1.35 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
[build-system]
requires = [ "setuptools>=80.9.0", "wheel",]
build-backend = "setuptools.build_meta"
[project]
name = "gitlab-api"
version = "25.15.56"
description = "GitLab API + MCP Server + A2A Server"
readme = "README.md"
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
requires-python = ">=3.10"
dependencies = [ "agent-utilities>=0.2.31",]
[[project.authors]]
name = "Audel Rouhi"
email = "knucklessg1@gmail.com"
[project.license]
text = "MIT"
[project.optional-dependencies]
mcp = [ "agent-utilities[mcp]>=0.2.31",]
agent = [ "agent-utilities[agent,logfire]>=0.2.31",]
gql = [ "gql>=4.0.0",]
all = [ "gitlab-api[mcp,agent,gql,logfire]>=25.15.56",]
test = [ "pytest", "pytest-asyncio",]
[project.scripts]
gitlab-mcp = "gitlab_api.mcp_server:mcp_server"
gitlab-agent = "gitlab_api.agent_server:agent_server"
[tool.setuptools]
include-package-data = true
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
check_untyped_defs = true
[tool.setuptools.package-data]
gitlab_api = [ "mcp_config.json", "agent_data/**",]
[tool.ruff.lint]
select = [ "E", "F", "I", "UP", "B",]
ignore = [ "E402", "E501", "B008",]
[tool.setuptools.packages.find]
where = [ ".",]