-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.16 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
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'mutahunter'
description = "LLM Mutation Testing for any programming language"
requires-python = ">= 3.11"
version = "1.2.4"
dependencies = [
"tree-sitter==0.21.3",
'tree_sitter_languages==1.10.2',
"tqdm",
'grep_ast',
'pygments',
'networkx',
'jinja2',
'litellm',
"numpy",
"scipy",
]
keywords = ["mutahunter", 'test', "testing", "LLM", 'mutant']
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Steven Jung" }]
maintainers = [{ name = "Steven Jung" }]
[project.urls]
Repository = "https://github.com/codeintegrity-ai/mutahunter"
[project.optional-dependencies]
dev = ['isort', 'black']
testing = ['pytest']
[project.scripts]
mutahunter = "mutahunter.main:run"
[tool.setuptools.package-data]
mutahunter = [
'src/mutahunter/core/queries/*.scm',
'src/mutahunter/core/templates/**/*.html',
'src/mutahunter/core/templates/**/*.txt',
]
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true