-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
35 lines (28 loc) · 902 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
33
34
35
from setuptools import Command, setup, find_packages
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys, subprocess
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)
setup(
name='lshhdc',
version='1.0.0',
description='LSHHDC : Locality-Sensitive Hashing based High Dimensional Clustering',
author='Mike Starr',
url='https://github.com/go2starr/lshhdc',
packages=['lsh'],
tests_require=['pytest'],
cmdclass = {'test': PyTest},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)