25 lines
471 B
TOML
25 lines
471 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "code-scan"
|
|
version = "1.0.0"
|
|
description = "代码扫描工具"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"flask>=2.0.0",
|
|
"pyyaml>=5.0",
|
|
"requests>=2.25.0",
|
|
"python-dotenv>=0.19.0",
|
|
"GitPython>=3.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
code-scan = "app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["scanner*"]
|