-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.33 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
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pr-security-review"
version = "0.1.0"
description = "Automated security review of pull requests using LLMs"
requires-python = ">=3.8"
dependencies = [
"anthropic>=0.46.0",
"openai>=1.63.2",
"google-generativeai>=0.3.0",
"PyGithub>=2.6.0",
"packaging>=24.2",
"numpy>=2.2.3",
"requests>=2.32.3",
"python-dotenv>=1.0.0",
"markdown>=3.4.0",
"psycopg2-binary>=2.9.0",
"sqlalchemy>=2.0.0",
"google-auth>=2.0.0",
"google-auth-oauthlib>=0.5.0",
"google-auth-httplib2>=0.1.0",
"flask>=2.3.0",
"flask-session>=0.5.0",
"boto3>=1.35.0",
"gunicorn>=21.0.0",
"pika>=1.3.0",
"voyageai>=0.3.0",
"PyPDF2>=3.0.0"
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0"
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-v --cov=pr_security_review --cov-report=term-missing"
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.coverage.run]
source = ["pr_security_review"]
omit = [
"tests/*",
"**/__init__.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"pass",
"raise ImportError",
]