-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.38 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "interdim"
version = "1.0.2"
description = "Interactive Dimensionality Reduction, Clustering, and Visualization"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Matthew Shinkle", email = "matthewshinkle@gmail.com"}
]
dependencies = [
"numpy",
"scikit-learn",
"plotly",
"dash",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["dimensionality reduction", "clustering", "visualization", "machine learning", "data analysis"]
[project.optional-dependencies]
umap = ["umap-learn"]
hdbscan = ["hdbscan"]
test = ["pytest"] # <-- Added this line to include pytest for testing
all = ["umap-learn", "hdbscan"]
[project.urls]
"Homepage" = "https://github.com/MShinkle/interdim"
"Bug Tracker" = "https://github.com/MShinkle/interdim/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["interdim*"]