forked from collinleiber/ClustPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.31 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
[build-system]
requires = ["setuptools", "wheel", "Cython>=3.0", "numpy>=2.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clustpy"
dynamic = ["version"]
description = "A Python library for advanced clustering algorithms"
readme = "README.md"
authors = [{name = "Collin Leiber", email = "leiber@dbs.ifi.lmu.de"}]
license = {text = "BSD-3-Clause License"}
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"scikit-learn>=1.6",
"matplotlib",
"torch",
"pandas",
"tqdm",
"torchvision"
]
[project.optional-dependencies]
full = ["Pillow", "nltk", "xlrd", "requests", "opencv-python-headless<4.13"]
[project.urls]
Homepage = "https://clustpy.readthedocs.io/en/latest/"
[tool.setuptools]
package-data = {"clustpy" = ["data/datasets/*.data"]}
[tool.setuptools.packages.find]
where = ["."]
include = ["clustpy*"]
exclude = ["*tests*", "docs*"]
[tool.setuptools.dynamic]
version = {attr = "clustpy.__version__"}
[tool.pytest.ini_options]
# Merged from your pytest.ini
markers = [
"data: marks tests concerning data loaders",
"largedata: marks tests concerning large data loaders (e.g. image data sets from torchvision)",
"timeseriesdata: marks tests concerning dataloader from www.timeseriesclassification.com"
]
[tool.coverage.run]
source = ["clustpy"]
omit = ["*/tests/*"]