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