2018-04-27 12:09:49 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
with open('./README.md', 'r') as f:
|
|
|
|
long_description = f.read()
|
2018-04-26 15:40:12 +00:00
|
|
|
|
|
|
|
setup(name='fog',
|
2018-05-30 16:44:29 +00:00
|
|
|
version='0.2.0',
|
2018-04-26 15:40:12 +00:00
|
|
|
description='A fuzzy matching & clustering library for python.',
|
2018-04-27 12:09:49 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2018-04-26 15:40:12 +00:00
|
|
|
url='http://github.com/Yomguithereal/fog',
|
|
|
|
license='MIT',
|
|
|
|
author='Guillaume Plique',
|
2018-04-27 12:54:40 +00:00
|
|
|
author_email='kropotkinepiotr@gmail.com',
|
2018-04-27 12:09:49 +00:00
|
|
|
keywords='fuzzy',
|
|
|
|
python_requires='>=3',
|
2018-06-03 08:22:28 +00:00
|
|
|
packages=find_packages(exclude=['experiments', 'test']),
|
2018-04-27 12:09:49 +00:00
|
|
|
package_data={'docs': ['README.md']},
|
2018-06-07 10:49:43 +00:00
|
|
|
install_requires=[
|
|
|
|
'dill==0.2.7.1',
|
2018-06-11 15:00:59 +00:00
|
|
|
'phylactery==0.1.1',
|
|
|
|
'Unidecode==1.0.22'
|
2018-06-07 10:49:43 +00:00
|
|
|
],
|
2018-04-26 15:40:12 +00:00
|
|
|
zip_safe=True)
|