polyleven 0.8__tar.gz → 0.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {polyleven-0.8 → polyleven-0.9.0}/LICENSE +1 -0
- {polyleven-0.8/polyleven.egg-info → polyleven-0.9.0}/PKG-INFO +8 -17
- {polyleven-0.8 → polyleven-0.9.0}/README.rst +3 -4
- {polyleven-0.8 → polyleven-0.9.0/polyleven.egg-info}/PKG-INFO +8 -17
- {polyleven-0.8 → polyleven-0.9.0}/polyleven.egg-info/SOURCES.txt +1 -1
- polyleven-0.9.0/pyproject.toml +26 -0
- polyleven-0.9.0/setup.py +7 -0
- polyleven-0.8/polyleven.egg-info/not-zip-safe +0 -1
- polyleven-0.8/setup.py +0 -33
- {polyleven-0.8 → polyleven-0.9.0}/MANIFEST.in +0 -0
- {polyleven-0.8 → polyleven-0.9.0}/polyleven.c +0 -0
- {polyleven-0.8 → polyleven-0.9.0}/polyleven.egg-info/dependency_links.txt +0 -0
- {polyleven-0.8 → polyleven-0.9.0}/polyleven.egg-info/top_level.txt +0 -0
- {polyleven-0.8 → polyleven-0.9.0}/setup.cfg +0 -0
|
@@ -2,6 +2,7 @@ Copyright (c) 2021 Fujimoto Seiji <fujimoto@ceptord.net>
|
|
|
2
2
|
Copyright (c) 2021 Max Bachmann <kontakt@maxbachmann.de>
|
|
3
3
|
Copyright (c) 2022 Nick Mazuk
|
|
4
4
|
Copyright (c) 2022 Michael Weiss <code@mweiss.ch>
|
|
5
|
+
Copyright (c) 2024 Alex Morgan <lexyym@gmail.com>
|
|
5
6
|
|
|
6
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
8
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1,21 +1,15 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: polyleven
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: A fast C-implemented library for Levenshtein distance
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Author-email: fujimoto@ceptord.net
|
|
8
|
-
License: MIT License
|
|
9
|
-
Project-URL: Documentation, https://ceptord.net/
|
|
10
|
-
Project-URL: GitHub Mirror, https://github.com/fujimotos/polyleven
|
|
5
|
+
Maintainer-email: Fujimoto Seiji <fujimoto@ceptord.net>
|
|
6
|
+
Project-URL: github, https://github.com/fujimotos/polyleven
|
|
11
7
|
Keywords: Levenshtein distance
|
|
12
|
-
Platform: UNKNOWN
|
|
13
8
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
9
|
Classifier: Operating System :: OS Independent
|
|
15
10
|
Classifier: Programming Language :: Python :: 3
|
|
16
11
|
Classifier: Programming Language :: C
|
|
17
|
-
|
|
18
|
-
Requires-Python: >=3.4
|
|
12
|
+
Requires-Python: >=3.8
|
|
19
13
|
Description-Content-Type: text/x-rst
|
|
20
14
|
License-File: LICENSE
|
|
21
15
|
|
|
@@ -23,8 +17,6 @@ License-File: LICENSE
|
|
|
23
17
|
Polyleven -- Fast Pythonic Levenshtein Library
|
|
24
18
|
==============================================
|
|
25
19
|
|
|
26
|
-
:Website: https://ceptord.net/
|
|
27
|
-
:Latest Release: v0.8 (2022-10-02)
|
|
28
20
|
:License: MIT License
|
|
29
21
|
|
|
30
22
|
1. Introduction
|
|
@@ -36,11 +28,12 @@ polyleven is a Pythonic Levenshtein distance library that:
|
|
|
36
28
|
both short (like English words) and long input types (like DNA
|
|
37
29
|
sequences).
|
|
38
30
|
|
|
31
|
+
- Is *stand-alone* depending only on core Python packages (such as
|
|
32
|
+
``setuptools`` for installation).
|
|
33
|
+
|
|
39
34
|
- Can be used readily in a manner not covered by restrictive
|
|
40
35
|
licenses such as GPL, hence can be used freely in private codes.
|
|
41
36
|
|
|
42
|
-
- Supports Python 3.x.
|
|
43
|
-
|
|
44
37
|
2. How to install
|
|
45
38
|
=================
|
|
46
39
|
|
|
@@ -129,5 +122,3 @@ polyleven v0.3 https://github.com/fujimotos/polyleven
|
|
|
129
122
|
|
|
130
123
|
.. [#fn1] Measured using Python 3.5.3 on Debian Jessie with Intel Core
|
|
131
124
|
i3-4010U (1.70GHz)
|
|
132
|
-
|
|
133
|
-
|
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
Polyleven -- Fast Pythonic Levenshtein Library
|
|
3
3
|
==============================================
|
|
4
4
|
|
|
5
|
-
:Website: https://ceptord.net/
|
|
6
|
-
:Latest Release: v0.8 (2022-10-02)
|
|
7
5
|
:License: MIT License
|
|
8
6
|
|
|
9
7
|
1. Introduction
|
|
@@ -15,11 +13,12 @@ polyleven is a Pythonic Levenshtein distance library that:
|
|
|
15
13
|
both short (like English words) and long input types (like DNA
|
|
16
14
|
sequences).
|
|
17
15
|
|
|
16
|
+
- Is *stand-alone* depending only on core Python packages (such as
|
|
17
|
+
``setuptools`` for installation).
|
|
18
|
+
|
|
18
19
|
- Can be used readily in a manner not covered by restrictive
|
|
19
20
|
licenses such as GPL, hence can be used freely in private codes.
|
|
20
21
|
|
|
21
|
-
- Supports Python 3.x.
|
|
22
|
-
|
|
23
22
|
2. How to install
|
|
24
23
|
=================
|
|
25
24
|
|
|
@@ -1,21 +1,15 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: polyleven
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: A fast C-implemented library for Levenshtein distance
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Author-email: fujimoto@ceptord.net
|
|
8
|
-
License: MIT License
|
|
9
|
-
Project-URL: Documentation, https://ceptord.net/
|
|
10
|
-
Project-URL: GitHub Mirror, https://github.com/fujimotos/polyleven
|
|
5
|
+
Maintainer-email: Fujimoto Seiji <fujimoto@ceptord.net>
|
|
6
|
+
Project-URL: github, https://github.com/fujimotos/polyleven
|
|
11
7
|
Keywords: Levenshtein distance
|
|
12
|
-
Platform: UNKNOWN
|
|
13
8
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
9
|
Classifier: Operating System :: OS Independent
|
|
15
10
|
Classifier: Programming Language :: Python :: 3
|
|
16
11
|
Classifier: Programming Language :: C
|
|
17
|
-
|
|
18
|
-
Requires-Python: >=3.4
|
|
12
|
+
Requires-Python: >=3.8
|
|
19
13
|
Description-Content-Type: text/x-rst
|
|
20
14
|
License-File: LICENSE
|
|
21
15
|
|
|
@@ -23,8 +17,6 @@ License-File: LICENSE
|
|
|
23
17
|
Polyleven -- Fast Pythonic Levenshtein Library
|
|
24
18
|
==============================================
|
|
25
19
|
|
|
26
|
-
:Website: https://ceptord.net/
|
|
27
|
-
:Latest Release: v0.8 (2022-10-02)
|
|
28
20
|
:License: MIT License
|
|
29
21
|
|
|
30
22
|
1. Introduction
|
|
@@ -36,11 +28,12 @@ polyleven is a Pythonic Levenshtein distance library that:
|
|
|
36
28
|
both short (like English words) and long input types (like DNA
|
|
37
29
|
sequences).
|
|
38
30
|
|
|
31
|
+
- Is *stand-alone* depending only on core Python packages (such as
|
|
32
|
+
``setuptools`` for installation).
|
|
33
|
+
|
|
39
34
|
- Can be used readily in a manner not covered by restrictive
|
|
40
35
|
licenses such as GPL, hence can be used freely in private codes.
|
|
41
36
|
|
|
42
|
-
- Supports Python 3.x.
|
|
43
|
-
|
|
44
37
|
2. How to install
|
|
45
38
|
=================
|
|
46
39
|
|
|
@@ -129,5 +122,3 @@ polyleven v0.3 https://github.com/fujimotos/polyleven
|
|
|
129
122
|
|
|
130
123
|
.. [#fn1] Measured using Python 3.5.3 on Debian Jessie with Intel Core
|
|
131
124
|
i3-4010U (1.70GHz)
|
|
132
|
-
|
|
133
|
-
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "polyleven"
|
|
7
|
+
version = "0.9.0"
|
|
8
|
+
dependencies = []
|
|
9
|
+
requires-python = ">= 3.8"
|
|
10
|
+
maintainers = [
|
|
11
|
+
{name = "Fujimoto Seiji", email = "fujimoto@ceptord.net"}
|
|
12
|
+
]
|
|
13
|
+
description = "A fast C-implemented library for Levenshtein distance"
|
|
14
|
+
readme = "README.rst"
|
|
15
|
+
keywords = [
|
|
16
|
+
"Levenshtein distance"
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 5 - Production/Stable",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: C",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
github = "https://github.com/fujimotos/polyleven"
|
polyleven-0.9.0/setup.py
ADDED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
polyleven-0.8/setup.py
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import setuptools
|
|
2
|
-
|
|
3
|
-
with open('README.rst') as fp:
|
|
4
|
-
README = fp.read()
|
|
5
|
-
|
|
6
|
-
setuptools.setup(
|
|
7
|
-
name='polyleven',
|
|
8
|
-
version='0.8',
|
|
9
|
-
author='Fujimoto Seiji',
|
|
10
|
-
author_email='fujimoto@ceptord.net',
|
|
11
|
-
license='MIT License',
|
|
12
|
-
description='A fast C-implemented library for Levenshtein distance',
|
|
13
|
-
long_description=README,
|
|
14
|
-
long_description_content_type='text/x-rst',
|
|
15
|
-
url='https://ceptord.net/',
|
|
16
|
-
ext_modules=[
|
|
17
|
-
setuptools.Extension('polyleven', sources=['polyleven.c'])
|
|
18
|
-
],
|
|
19
|
-
project_urls={
|
|
20
|
-
'Documentation': 'https://ceptord.net/',
|
|
21
|
-
'GitHub Mirror': 'https://github.com/fujimotos/polyleven'
|
|
22
|
-
},
|
|
23
|
-
zip_safe=False,
|
|
24
|
-
python_requires='>=3.4',
|
|
25
|
-
keywords=['Levenshtein distance'],
|
|
26
|
-
classifiers=[
|
|
27
|
-
'Development Status :: 5 - Production/Stable',
|
|
28
|
-
'Operating System :: OS Independent',
|
|
29
|
-
'Programming Language :: Python :: 3',
|
|
30
|
-
'Programming Language :: C',
|
|
31
|
-
'License :: OSI Approved :: MIT License'
|
|
32
|
-
]
|
|
33
|
-
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|