-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "mislabeled"
dynamic = ["version"]
description = "detect mislabeled examples in machine learning datasets"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = []
authors = [
{ name = "Thomas George", email = "[email protected]"},
{ name = "Pierre Nodet", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"numpy",
"scipy",
"scikit-learn",
]
[project.optional-dependencies]
datasets = ["pooch", "pandas"]
examples = ["mislabeled[datasets]", "matplotlib"]
[project.urls]
Documentation = "https://github.com/orange-opensource/mislabeled#readme"
Issues = "https://github.com/orange-opensource/mislabeled/issues"
Source = "https://github.com/orange-opensource/mislabeled"
[tool.hatch.version]
source = "vcs"
[tool.hatch.envs.hatch-test]
extra-args = ["--ignore=tests/datasets", "--ignore=tests/test_cache.py"]
[tool.coverage.run]
omit = ["tests"]
[tool.ruff]
line-length = 88
exclude = ["docs", "examples"]
[tool.ruff.lint]
preview = true
select = ["E", "F", "W", "I"]