-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 969 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 969 Bytes
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
from Cython.Distutils import build_ext
from distutils.core import setup, Extension
setup(
name='fuzzy',
version="0.3",
ext_modules=[
Extension('fuzzy', ['src/fuzzy.pyx', 'src/double_metaphone.c'])
],
description="Fast Python phonetic algorithms",
maintainer="YouGov, Plc.",
maintainer_email="dev@yougov.com",
url="https://bitbucket.org/yougov/fuzzy",
cmdclass={'build_ext': build_ext},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Artistic License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
long_description=open('README.rst').read(),
)