-
Notifications
You must be signed in to change notification settings - Fork 151
/
setup.py
32 lines (30 loc) · 879 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
31
32
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
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='[email protected]',
packages=find_packages(exclude=["tests.*"]),
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<3.3",
"redis",
"mockredispy",
"mongomock",
]
)