-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 854 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='fastknn',
version='0.0.1',
author="Francois Valadier",
author_email="[email protected]",
description="Easy to use fast kNN",
long_description="Easy to use fast kNN",
long_description_content_type="text/markdown",
url="https://github.com/Fanchouille/fastknn.git",
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'pandas',
'pybind11',
'nmslib>=1.8.1',
'scipy',
'ujson'],
classifiers=[
"Development Status :: 2 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: TF1 :: All rights reserved"
],
)