-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.16 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
#$Id$
from setuptools import setup
version = '0.2.0'
setup(name='nilsimsa',
version=version,
description="Locality-sensitive hashing",
long_description="""\
Python port of nilsimsa. "A nilsimsa code is something like a hash, but unlike hashes, a small change in the message results in a small change in the nilsimsa code. Such a function is called a locality-sensitive hash." http://ixazon.dynip.com/~cmeclax/nilsimsa.html.""",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Text Processing :: Indexing",
"License :: OSI Approved :: MIT X11",
],
keywords='python, nilsimsa, hash, locality-sensitive, duplicate detection',
author'Nithin Tumma',
maintainer='nithintumma',
author_email='nithintumma gmail',
url='http://code.google.com/p/py-nilsimsa/',
license="MIT X11",
zip_safe=False,
install_requires=[],
entry_points="""
# -*- Entry points: -*-
""",
packages=['nilsimsa'],
package_data = {"nilsimsa": ["test_data/*.txt", "test_data/*.p"]}
)