Add setuptools as project dependency (#4160)

This commit is contained in:
shashank-elastic
2024-10-16 20:09:23 +05:30
committed by GitHub
parent 4b4b2cc9c8
commit b1e91ddb14
2 changed files with 2 additions and 2 deletions
-1
View File
@@ -12,7 +12,6 @@ PIP := $(VENV_BIN)/pip
all: release
$(VENV):
python3.12 -m pip install --upgrade pip setuptools
python3.12 -m venv $(VENV)
.PHONY: clean
+2 -1
View File
@@ -39,7 +39,8 @@ dependencies = [
"XlsxWriter~=3.2.0",
"semver==3.0.2",
"detection-rules-kql @ git+https://github.com/elastic/detection-rules.git#subdirectory=lib/kql",
"detection-rules-kibana @ git+https://github.com/elastic/detection-rules.git#subdirectory=lib/kibana"
"detection-rules-kibana @ git+https://github.com/elastic/detection-rules.git#subdirectory=lib/kibana",
"setuptools==75.2.0"
]
[project.optional-dependencies]
dev = ["pep8-naming==0.13.0", "PyGithub==2.2.0", "flake8==7.0.0", "pyflakes==3.2.0", "pytest>=8.1.1", "nodeenv==1.8.0", "pre-commit==3.6.2"]