-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.38 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>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "depgate"
version = "0.10.0"
description = "DepGate detects and prevents dependency confusion and supply-chain risks. (Hard fork of Apiiro's Dependency Combobulator)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "cognitivegears" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.32.4,<2.32.6",
"gql>=3.5.0",
"python-dotenv>=0.19.2",
"requirements-parser>=0.11.0",
"packaging>=23.2",
"semantic_version>=2.10.0",
"PyYAML>=6.0",
"mcp[cli]>=1.18.0",
"jsonschema>=4.19.0",
"yarnlock==1.2.0",
"aiohttp>=3.9.0",
]
[project.urls]
Homepage = "https://github.com/cognitivegears/depgate"
"Bug Tracker" = "https://github.com/cognitivegears/depgate/issues"
[project.scripts]
depgate = "depgate:main"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["depgate", "args", "constants", "metapackage", "cli_io", "cli_build", "cli_registry", "cli_classify", "cli_config", "cli_mcp", "cli_proxy", "cli_run", "run_wrappers"]
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=7.0",
"pylint>=3.0",
"behave>=1.2.6",
"pytest-cov>=7.0.0",
]