mirror of
https://github.com/q3alique/codeflow
synced 2026-06-21 14:06:02 +00:00
acc1b4f3e7
Static taint-analysis and visualization tool for source-code security review. Supports deep analysis for Python, JavaScript/TypeScript, Java, Go, and C#, with structural support for all other languages via the generic extractor. Outputs: interactive HTML report, LLM-ready Markdown review document, and optional Burp Suite JSON export. Self-bootstrapping launcher (run.py) requires no virtual environment.
22 lines
467 B
Python
22 lines
467 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="codeflow",
|
|
version="0.1.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"tree-sitter==0.21.3",
|
|
"tree-sitter-languages==1.10.2",
|
|
"networkx==3.3",
|
|
"click==8.1.7",
|
|
"jinja2==3.1.4",
|
|
"pathspec==0.12.1",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"codeflow=codeflow.cli:cli",
|
|
],
|
|
},
|
|
python_requires=">=3.10",
|
|
)
|