-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (80 loc) · 2.66 KB
/
pyproject.toml
File metadata and controls
94 lines (80 loc) · 2.66 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# ---------------------------------------------------------------------------
# Project metadata
# ---------------------------------------------------------------------------
[project]
name = "fuzzy-visual-encoding"
version = "0.1.0"
description = "Fuzzy visual encoding for image classification using Gustafson-Kessel and Gath-Geva clustering"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Ashish Gupta" }]
requires-python = ">=3.10"
keywords = [
"fuzzy-clustering",
"computer-vision",
"bag-of-features",
"gustafson-kessel",
"gath-geva",
"image-classification",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
"numpy>=1.24",
"scikit-learn>=1.3",
"scipy>=1.11",
]
[project.optional-dependencies]
viz = ["matplotlib>=3.8"]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"matplotlib>=3.8",
]
[project.scripts]
fuzzy-encode = "fuzzy_visual_encoding.cli:main"
[project.urls]
Homepage = "https://github.com/ashish-code/FuzzyVisualEncoding"
Repository = "https://github.com/ashish-code/FuzzyVisualEncoding"
Paper = "https://ieeexplore.ieee.org/document/6467459"
# ---------------------------------------------------------------------------
# Hatchling build — src layout
# ---------------------------------------------------------------------------
[tool.hatch.build.targets.wheel]
packages = ["src/fuzzy_visual_encoding"]
# ---------------------------------------------------------------------------
# uv — tool configuration
# ---------------------------------------------------------------------------
[tool.uv]
dev-dependencies = [
"pytest>=7.4",
"pytest-cov>=4.1",
"matplotlib>=3.8",
]
# ---------------------------------------------------------------------------
# pytest
# ---------------------------------------------------------------------------
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
# ---------------------------------------------------------------------------
# Coverage
# ---------------------------------------------------------------------------
[tool.coverage.run]
source = ["src/fuzzy_visual_encoding"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = false