-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.13 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
[build-system]
requires = [
"setuptools>=67.6.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "sflkit"
version = "0.2.22"
authors = [
{ name = "Marius Smytzek", email = "marius.smytzek@cispa.de" },
]
description = "SFLKit: : A Workbench for Statistical Fault Localization"
readme = "README.md"
license = { file = "COPYING" }
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Testing"
]
dependencies = [
"sflkitlib>=0.0.5",
"numpy>=1.23.5",
"matplotlib>=3.7.2",
"sortedcollections>=2.1.0"
]
[project.urls]
"Homepage" = "https://github.com/uds-se/sflkit/"
"Bug Tracker" = "https://github.com/uds-se/sflkit/issues"
[project.scripts]
sflkit = "sflkit.cli:main"
[project.optional-dependencies]
test = [
"pytest>=7.2.2",
"pytest-cov>=4.1.0",
"pytest-html>=3.2.0",
"pytest-rerunfailures>=11.1.2",
"parameterized>=0.8.1"
]
[tool.black]
line-length = 88
target-version = ['py310']