forked from 1e0ng/simhash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 640 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (23 loc) · 640 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'simhash',
version = '1.11.0',
keywords = ('simhash'),
description = 'A Python implementation of Simhash Algorithm',
license = 'MIT License',
url = 'http://leons.im/posts/a-python-implementation-of-simhash-algorithm/',
author = '1e0n',
author_email = 'i@leons.im',
packages = find_packages(),
include_package_data = True,
platforms = 'any',
install_requires = [],
tests_require = [
'nose',
'numpy',
'scipy',
'scikit-learn',
],
test_suite = "nose.collector",
)