mirror of https://github.com/Yomguithereal/fog.git
New attempt
This commit is contained in:
parent
d1a8e3622f
commit
a6f8fa2b33
5
setup.py
5
setup.py
|
@ -5,7 +5,7 @@ with open('./README.md', 'r') as f:
|
|||
long_description = f.read()
|
||||
|
||||
setup(name='fog',
|
||||
version='0.5.2',
|
||||
version='0.5.3',
|
||||
description='A fuzzy matching & clustering library for python.',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
|
@ -19,6 +19,7 @@ setup(name='fog',
|
|||
ext_modules=cythonize('fog/metrics/*.pyx'),
|
||||
package_data={'': ['*.pyx'], 'docs': ['README.md']},
|
||||
install_requires=[
|
||||
'cython',
|
||||
'dill==0.2.7.1',
|
||||
'phylactery==0.1.1',
|
||||
'Unidecode==1.0.22'
|
||||
|
@ -28,6 +29,6 @@ setup(name='fog',
|
|||
'cython'
|
||||
],
|
||||
entry_points={
|
||||
'console_scripts': ['fog=fog.cli']
|
||||
'console_scripts': ['fog=fog.cli.__main__:main']
|
||||
},
|
||||
zip_safe=True)
|
||||
|
|
Loading…
Reference in New Issue