-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 818 Bytes
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
[project]
name = "mutation"
version = "0.6.0"
description = "Your tests pass. But do they actually test anything?"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiostream>=0.7.1",
"docopt>=0.6.2",
"humanize>=4.15.0",
"loguru>=0.7.3",
"pygments>=2.19.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-randomly>=4.0.1",
"pytest-xdist>=3.8.0",
"python-ulid>=3.1.0",
"termcolor>=3.3.0",
"tqdm>=4.67.3",
"zstandard[cffi]>=0.25.0",
]
[project.urls]
Homepage = "https://github.com/amirouche/mutation.py"
[project.scripts]
mutation = "mutation:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["mutation"]
[dependency-groups]
dev = [
"ruff>=0.15.5",
"tbvaccine>=0.3.1",
]