-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
24 lines (22 loc) · 820 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
from distutils.core import setup
setup(
name='TinyFastSS',
version='v2.0.2',
py_modules=['fastss'],
author='Fujimoto Seiji',
author_email='fujimoto@ceptord.net',
url='https://github.com/fujimotos/TinyFastSS',
description='An efficient indexing data structure for string similarity search',
long_description="""FastSS is an efficient indexing data structure
for string similarity search, invented by researchers at Zurich University
in 2007.
TinyFastSS is a simple Python implementation of FastSS, written in less than
300 LoC.""",
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Indexing'
]
)