-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 1.13 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
[tool.poetry]
name = "healthycode"
version = "0.1.2"
description = "Client to generate GrimoireLab metrics for Project Health using the software analytics platform GrimoireLab"
authors = [
"Bitergia Developers",
"AboutCode"
]
license = "GPL-3.0+"
readme = "README.md"
packages = [{include = "grimoirelab_metrics", from = "src"}]
[tool.poetry.scripts]
grimoirelab-metrics = "grimoirelab_metrics.cli:grimoirelab_metrics"
[tool.poetry.dependencies]
python = "^3.11"
spdx-tools = "^0.8.3"
click = "^8.1.8"
requests = "^2.32.3"
opensearch-py = "^3.0.0"
grimoirelab-toolkit = {git = "https://github.com/chaoss/grimoirelab-toolkit.git", allow-prereleases = true}
numpy = "<2.5.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
httpretty = "^1.1.4"
flake8 = "^7.1.1"
pre-commit = "^4.1.0"
black = "^24.10.0"
grimoirelab-core = {git = "https://github.com/chaoss/grimoirelab-core.git", allow-prereleases = true}
testcontainers = {extras = ["opensearch", "redis", "generic", "mysql"], version = "^4.9.1"}
[tool.black]
line-length = 130
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"