forked from gitbugactions/gitbugactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 908 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "gitbugactions"
version = "3.0.0"
description = "A tool that builds bug-fix benchmarks by leveraging GitHub Actions."
authors = ["Nuno Saavedra <[email protected]>", "André Silva <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
PyGithub = "2.5.0"
pandas = "2.2.3"
pygit2 = "1.16.0"
PyYAML = "6.0.2"
psutil = "6.1.0"
docker = "7.1.0"
unidiff = "0.7.5"
tqdm = "4.67.1"
urllib3 = "2.2.3"
junitparser = "3.2.0"
fire = "0.6.0"
nltk = "3.9.1"
attrs = "^24.0.0"
referencing = "^0.35.1"
pytest-ordering = "^0.6"
numpy = "2.1.3"
schedule = "^1.2.2"
jsonschema = "^4.23.0"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.4"
pytest-mock = "3.14.0"
pytest-dependency = "0.6.0"
flaky = "3.8.1"
pytest-ignore-flaky = "2.2.1"
black = "24.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"