-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (33 loc) · 1 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
from setuptools import setup
exec(open('src/version.py').read())
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='NeighborBlend',
version=__version__,
decription='Iterative Weighted average of the neighbors',
py_modules=['NeighborBlend'],
package_dir={'':'src'},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=[
'numpy',
'pandas',
'faiss-cpu',
'scikit-learn'
],
python_requires='>=3',
long_description=long_description,
long_description_content_type="text/markdown",
author="Soni Sanskar",
author_email="soni.sanskar@gmail.com",
url="https://github.com/sonisanskar/Neighborhood-Blending",
packages=['faiss']
)