-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kmeans-tjdwill"
dynamic = ["version"]
authors = [
{name = "Terrance Williams", email = "[email protected]"},
]
description = "A function-based implementation of k-means clustering that maintains data association."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"numpy", "matplotlib"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
keywords = ["k-means", "clustering", "data analysis", "data processing", "linear algebra", "robotics", "computer vision"]
[project.urls]
Homepage = "https://github.com/tjdwill/kmeans"
Docs = "https://tjdwill.github.io/kmeans"
Issues = "https://github.com/tjdwill/kmeans/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/kmeans"]
[tool.hatch.version]
path = "src/kmeans/__init__.py"