forked from sciai-lab/UMAPs-true-loss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 977 Bytes
/
setup.py
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
from setuptools import setup
configuration = {
"name": "umap",
"version": "0.1",
"description": "Loss logging extentions to UMAP",
"long_description_content_type": "text/x-rst",
"keywords": "dimension reduction t-sne manifold",
"license": "MIT",
"packages": ["umap"],
"install_requires": [
"numpy >= 1.17",
"scikit-learn >= 0.22",
"scipy >= 1.0",
"numba >= 0.49",
"pynndescent >= 0.5",
],
"extras_require": {
"plot": [
"pandas",
"matplotlib",
"datashader",
"bokeh",
"holoviews",
"colorcet",
"seaborn",
"scikit-image",
],
"parametric_umap":
[
"tensorflow >= 2.1"
]
},
"ext_modules": [],
"cmdclass": {},
"test_suite": "pytest",
"tests_require": ["pytest"],
"data_files": (),
"zip_safe": False,
}
setup(**configuration)