-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 990 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 990 Bytes
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
[project]
name = "spherical-scikit-learn"
version = "0.1.2"
description = "A toolkit for spherical k-means and von Mises-Fisher mixture models"
dependencies = [
"scikit-learn>=1.4.1.post1",
"numpy>=1.20.0",
"scipy>=0.11.0",
"threadpoolctl>=2.2.0",
]
[project.urls]
Documentation = "https://lijiaqi.github.io/spherical-scikit-learn/"
Repository = "https://github.com/lijiaqi/spherical-scikit-learn.git"
[project.optional-dependencies]
test = ["pytest", "matplotlib"]
dev = ["pytest", "matplotlib", "build", "setuptools>=42", "Cython>=3.0"]
[build-system]
requires = [
"setuptools>=61",
"wheel",
"Cython>=3.0",
"scikit-learn>=1.4.1.post1",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"spsklearn.cluster" = ["*.pyx", "*.pxd"]
[tool.setuptools]
packages = [
"spsklearn",
"spsklearn.cluster",
"spsklearn.mixture",
"spsklearn.utils",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]