-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·53 lines (51 loc) · 2.31 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import find_packages, setup
long_description = """\
Brew-Distance implements a weighted edit distance algorithm. This provides
not only the edit distance between two strings, but also (optionally) a
list of the edits required to equalize them. It also allows for the
optional re-weighting of each edit type ("MATCH", "DEL", "INS",
"SUBST"), for customization of edit distance calculations.
"""
setup(
name='Brew-Distance',
version='1.0.1',
author='David H. Gutteridge',
author_email='[email protected]',
url='http://github.com/dhgutteridge/brew-distance',
packages=find_packages(),
license='LICENSE.txt',
description='A Python module that implements a weighted edit distance algorithm.',
long_description=long_description,
keywords=['edit', 'distance', 'editdistance', 'levenshtein', 'wagner-fischer', 'brew', 'string', 'comparison'],
test_suite='brew_distance.test',
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)"
]
)