-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.69 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
[tool.poetry]
name = "addepar-redflag"
version = "1.2.0"
description = "RedFlag uses AI to identify high-risk code changes. Run it in batch mode for release candidate testing or in CI pipelines to flag commits and add reviewers. RedFlag's flexible configuration makes it valuable for any team."
authors = ["Addepar Security Engineering <security-engineering@addepar.com>"]
repository = "https://github.com/Addepar/RedFlag"
license = "MIT"
keywords = ["security", "code review", "static analysis", "AI"]
readme = "README.md"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"
]
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
pygithub = "^2.1.1"
gitpython = "^3.1.40"
atlassian-python-api = "^3.41.3"
jinja2 = "^3.1.2"
boto3 = "^1.28.79"
anthropic = "^0.7.5"
colorama = "^0.4.6"
tiktoken = "^0.5.2"
langchain = "^0.1.13"
langchain-core = "^0.1.34"
langchain-community = "^0.0.29"
pathlib = "^1.0.1"
rich = "^13.7.1"
urllib3 = "^2.2.1"
python-dotenv = "^1.0.1"
# pinned due to https://github.com/langchain-ai/langchain/issues/22972
tenacity = "8.3.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.26.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
redflag = "addepar_redflag.util.cli:cli"