-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.14 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
[project]
name = "GraphQLer"
version = "2.3.8"
description = "A cutting edge context aware GraphQL API fuzzing tool!"
authors = [{ name = "Omar2535", email = "omar@9tsai.ca" }]
requires-python = ">=3.12,<3.13"
readme = "README.md"
license = "MIT"
dependencies = [
"requests>=2.32.5",
"urllib3>=2.6.3",
"graphql-core>=3.2.8",
"pyyaml>=6.0.3",
"levenshtein>=0.27.3",
"clairvoyance>=2.5.5",
"cloudpickle>=3.1.2,<4",
"matplotlib>=3.8.0",
"networkx>=3.6.1",
"litellm>=1.67.0",
"websockets>=14.0",
"textual>=6.0.0,<8.0.0",
]
[project.optional-dependencies]
mcp = ["mcp>=1.0.0", "fastmcp>=3.1.1"]
[project.scripts]
graphqler-mcp = "graphqler.utils.mcp_utils.server:serve"
[tool.ruff]
line-length = 180
[dependency-groups]
dev = [
"autopep8>=2.3.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-mock",
"pytest-xdist>=3.0.0",
"flake8>=7.3.0",
"pre-commit>=4.5.1",
"ruff>=0.15.7",
"mkdocs>=1.6.1,<2",
"lark>=1.3.1",
"ty>=0.0.25",
]
[tool.ty.src]
exclude = ["sample-graphql-apis/"]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"