-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (42 loc) · 1.02 KB
/
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
41
42
43
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
authors = [
{name = "Nuno Saavedra", email = "[email protected]"},
{name = "André Silva", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = "<4.0,>=3.12"
dependencies = [
"PyGithub==2.6.1",
"pandas==2.2.3",
"pygit2==1.17.0",
"PyYAML==6.0.2",
"docker==7.1.0",
"unidiff==0.7.5",
"tqdm==4.67.1",
"urllib3==2.3.0",
"junitparser==3.2.0",
"fire==0.7.0",
"nltk==3.9.1",
"attrs<26.0.0,>=25.0.0",
"referencing<1.0.0,>=0.36.0",
"numpy==2.2.3",
"schedule<2.0.0,>=1.2.2",
"jsonschema<5.0.0,>=4.23.0",
]
name = "gitbugactions-executor"
version = "0.0.1"
description = "A for executing GitHub Actions."
readme = "README.md"
[dependency-groups]
dev = [
"pytest==8.3.5",
"pytest-mock==3.14.0",
"pytest-dependency==0.6.0",
"pytest-ordering<1.0,>=0.6",
"flaky==3.8.1",
"pytest-ignore-flaky==2.2.1",
"black==25.1.0",
"isort==6.0.1",
]