-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
33 lines (31 loc) · 993 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
29
30
31
32
33
import setuptools
with open('README.rst') as fp:
README = fp.read()
setuptools.setup(
name='polyleven',
version='0.8',
author='Fujimoto Seiji',
author_email='fujimoto@ceptord.net',
license='MIT License',
description='A fast C-implemented library for Levenshtein distance',
long_description=README,
long_description_content_type='text/x-rst',
url='https://ceptord.net/',
ext_modules=[
setuptools.Extension('polyleven', sources=['polyleven.c'])
],
project_urls={
'Documentation': 'https://ceptord.net/',
'GitHub Mirror': 'https://github.com/fujimotos/polyleven'
},
zip_safe=False,
python_requires='>=3.4',
keywords=['Levenshtein distance'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: C',
'License :: OSI Approved :: MIT License'
]
)