-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arena-python"
version = "2025.0.1"
dependencies = [
"antlr4-python3-runtime~=4.13.2",
"pandas~=2.2.3",
"coverage~=7.6.12",
"mutmut~=3.2.3",
"parso~=0.8.4",
"langchain-core~=0.3.35",
"langchain-ollama~=0.2.3",
"langchain-openai~=0.3.6",
"pyignite~=0.6.1"
]
requires-python = ">=3.12"
authors = [
{ name = "Marcus Kessel", email = "marcus.kessel@uni-mannheim.de" }
]
maintainers = [
{ name = "Marcus Kessel", email = "marcus.kessel@uni-mannheim.de" }
]
description = "LASSO Arena Test Driver for Python"
readme = "README.md"
license = "GPL-3.0"
license-files = ["LICEN[CS]E.*"]
keywords = ["testing", "test", "driver"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/SoftwareObservatorium/"
[tool.hatch.build.targets.wheel]
packages = ["arena"]
[tool.hatch.envs.test]
dependencies = [
"pytest"
]