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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
bump = true
pattern = "^(?P<base>\\d+(?:\\.\\d+)*)"
[project]
name = "fylearn"
maintainers = [
{name = "Søren Atmakuri Davidsen", email = "soren@atmakuridavidsen.com"},
]
dynamic = ["version"]
description = "Fuzzy Machine Learning Algorithms"
readme = {file = "README.md", content-type = "text/markdown"}
license = { text = "MIT" }
requires-python = ">=3.12"
classifiers = [
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
]
keywords=['machine learning', 'fuzzy logic', 'scikit-learn','fuzzy systems']
dependencies = [
'numpy>=1.17',
'scikit-learn>=0.22',
]
[project.optional-dependencies]
scipy = [
'scipy>=1.3',
]
[project.urls]
Repository = "https://github.com/sorend/fylearn.git"
Issues = "https://github.com/sorend/fylearn/issues"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"tox",
"tox-gh-actions",
"versiontag>=1.2.0",
]
[tool.ruff.lint]
select = ["C4", "E", "F", "I", "PERF", "UP"]
ignore = ["PERF203"]
[tool.ruff]
line-length = 120
target-version = "py312"
#[tool.ruff.lint.per-file-ignores]
#"__init__.py" = ["F401"]
#"tests/server/fastmcp/test_func_metadata.py" = ["E501"]
[tool.pytest.ini_options]
addopts = "-v --cov-fail-under=60 --cov=fylearn"
testpaths = [
"tests",
]