-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 821 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
25
26
27
28
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
author='Nathan A. Rooy',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: C'
],
description='Levenshtein edit distance computed quickly',
ext_modules=[
setuptools.Extension('turboshtein', sources=['turboshtein.c'])
],
keywords=['levenshtein distance'],
license='MIT License',
long_description=long_description,
long_description_content_type="text/markdown",
name='turboshtein',
python_requires='>=3.4',
url='https://github.com/nathanrooy/turboshtein',
version='0.0.4'
)