fog/setup.py

20 lines
637 B
Python
Raw Normal View History

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',
packages=find_packages(exclude=['test']),
package_data={'docs': ['README.md']},
2018-04-26 15:40:12 +00:00
zip_safe=True)