-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
55 lines (50 loc) · 1.66 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
49
50
51
52
53
54
55
from setuptools import setup
def readme():
with open("README.rst") as readme_file:
return readme_file.read()
configuration = {
"name": "pynndescent",
"version": "0.5.13",
"description": "Nearest Neighbor Descent",
"long_description": readme(),
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
"keywords": "nearest neighbor, knn, ANN",
"url": "https://github.com/lmcinnes/pynndescent",
"author": "Leland McInnes",
"author_email": "[email protected]",
"maintainer": "Leland McInnes",
"maintainer_email": "[email protected]",
"license": "BSD",
"packages": ["pynndescent"],
"install_requires": [
"scikit-learn >= 0.18",
"scipy >= 1.0",
"numba >= 0.51.2",
"llvmlite >= 0.30",
"joblib >= 0.11",
'importlib-metadata >= 4.8.1; python_version < "3.8"',
],
"ext_modules": [],
"cmdclass": {},
"test_suite": "nose.collector",
"tests_require": ["nose"],
"data_files": (),
"zip_safe": False,
}
setup(**configuration)