forked from mc-imperial/dredd-compiler-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (24 loc) · 964 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[metadata]
name = "dredd_test_runners"
version = "0.0.1"
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[project]
name = "dredd_test_runners"
version = "0.0.1"
authors = [
{ name="Alastair F. Donaldson", email="[email protected]" },
]
description = "Runner scripts for research involving the Dredd mutation testing tool"
readme = "README.md"
requires-python = ">=3.10"
[project.scripts]
csmith-runner = "dredd_test_runners.csmith_runner.main:main"
yarpgen-runner = "dredd_test_runners.yarpgen_runner.main:main"
llvm-test-suite-runner = "dredd_test_runners.llvm_test_suite_runner.main:main"
llvm-regression-tests-runner = "dredd_test_runners.llvm_regression_tests_runner.main:main"
analyse-results = "dredd_test_runners.analyse_results.main:main"
reduce-new-kills = "dredd_test_runners.reduce_new_kills.main:main"