-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
48 lines (43 loc) · 1.59 KB
/
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
45
46
47
48
from pathlib import Path
import setuptools
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
test_dependencies = ["pytest", "torchvision", "pre_commit"]
setuptools.setup(
name="hnne",
version="1.0.2",
author="Marios Koulakis, Saquib Sarfraz",
author_email="[email protected], [email protected]",
description="A fast hierarchical dimensionality reduction algorithm.",
long_description=long_description,
long_description_content_type="text/x-rst",
packages=["hnne"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="dimension dimensionality reduction t-sne umap hierarchical clustering finch",
install_requires=[
"numba>=0.51.2",
"pynndescent",
"scipy",
"numpy>=1.18",
"scikit-learn",
"tqdm",
"typer",
"pandas",
"cython",
],
test_suite="pytest",
tests_require=test_dependencies,
extras_require={"test": test_dependencies},
project_urls={
"Documentation": "https://hnne.readthedocs.io/en/latest",
"Repository": "https://github.com/koulakis/h-nne",
"Publication": "https://openaccess.thecvf.com/content/CVPR2022/papers/Sarfraz_Hierarchical_Nearest_Neighbor_Graph_Embedding_for_Efficient_Dimensionality_Reduction_CVPR_2022_paper.pdf", # noqa: E501
},
)