forked from pixelogik/NearPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 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
40
#!/usr/bin/env python
import sys
from setuptools import setup
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
setup_requires = ['pytest-runner>=2.0,<3.0'] if needs_pytest else []
setup(
name='NearPy',
version='1.0.0',
author='Ole Krause-Sparmann',
author_email='ole@pixelogik.de',
packages=[
'nearpy',
'nearpy.distances',
'nearpy.experiments',
'nearpy.filters',
'nearpy.hashes',
'nearpy.hashes.permutation',
'nearpy.storage',
'nearpy.utils'
],
url='https://github.com/pixelogik/NearPy',
license='LICENSE.txt',
description='Framework for fast approximated nearest neighbour search.',
keywords='nearpy approximate nearest neighbour',
long_description=open('README.txt').read(),
install_requires=[
"numpy",
"scipy",
"bitarray",
"future",
],
setup_requires=setup_requires,
tests_require=[
"pytest",
"redis",
"mockredispy",
]
)